python3的print Python3的print方法是有参数的,比如sep表示字符串之间的连接符,end表示以什么结尾。如果没有设置参数默认sep=‘ ’,end=’\n’ 错误: print(k+'\t'+str(v)) #对的 print(k,'\t',str(v)) #错的