激昂煎蛋

文章
5
资源
0
加入时间
3年0月9天

python使用end报错

print函数默认是换行,如果要替换这个换行,肯定首先想到打的是end,然后 我一用end发现一直是报错。因为比较尴尬,其他的试错环节我就不放出来了????事实上,Python3中print里会自带end,但是Python2里是没有的,怎么办呢?from __future__ import print_function调用一个函数就解决啦!效果图如下:>>> a=0>>> while a<5:...