Python 中的不换行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 中的不换行相关的知识,希望对你有一定的参考价值。

num=1;


while num<5 :

    print ("haha1",end=‘‘)
    
    j=1;
    while j<5 :
        #python 3.x 默认是换行的 加上,end="" 表示不换行 ;python 2.x 中 加上,号就可以了。
        print("haha2",end=‘‘)
        j+=1

    print("")
    num+=1

 

以上是关于Python 中的不换行的主要内容,如果未能解决你的问题,请参考以下文章

python中for循环前面换行最后不换行

python2.7如何让print“不换行”

python脚本输出不换行或者输出换行

python中如何使输出不换行

python不换行输出

pythonend=换行怎么换不了