print函数
print 输出完毕默认换行 \n ,即输出语句后自动切换到下一行,对于python3来说,如果要实现输出不换行的功能,那么可以设置end=''
print('love') #输出自动换行 print (‘love’,end=‘’) #这样输出就不会自动换行了
print('hello',end='') print('world',end='') print('!') #这三行输出 helloworld!
sep参数(separate)是用来设定print()中的多个对象之间的连接符号是什么,默认是空格。多个对象之间是通过逗号,来分隔。
print("a","b","c",sep="**") # a**b**c print("a",end="$") # a$ print('hello','world','!') # hello world !
f = open('abc.txt','w') print('a',file=f) f.close() # 只有执行f.close()之后才将内容写进文件。 print('a',file=f,flush=True)立刻就可以看到文件的内容