python基础一输入,输出,变量
python
输入和输出
输出 print()
用print()在括号中加上字符串,就可以向屏幕上输出指定的文字。比如输出’hello, world’,用代码实现如下:
print(‘hello, world’)
print()函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出:
print(‘The quick brown fox’, ‘jumps over’, ‘the lazy dog’)
The quick brown fox jumps over the lazy d
原创
2020-08-13 15:11:42 ·
445 阅读 ·
0 评论