python 的print 输出
时间: 2023-11-27 11:35:28 浏览: 71
在Python中,print函数用于将内容打印到标准输出。在Python2中,print语句可以直接使用,例如`print 'hello world'`。而在Python3中,print函数需要使用括号,例如`print("hello world")`。此外,Python3的print函数还可以接受参数,比如sep表示字符串之间的连接符,end表示以什么结尾。如果没有设置参数,默认的sep是空格,end是换行符。所以如果想要输出不换行且没有空格,可以使用`print(i, end='')`。但是需要注意,在Python2中使用这种方式会编译错误,需要使用Python3版本。
阅读全文