首页 > 代码库 > python3的print函数

python3的print函数

 

print()函数也可以接受多个字符串,用逗号“,”隔开,就可以连成一串输出:

>>> print(The quick brown fox, jumps over, the lazy dog)
The quick brown fox jumps over the lazy dog

 

python3的print函数