2021
05-23
05-23
一文秒懂python中的 \r 与 end=‘’ 巧妙用法
/r的用法与end=""用法 \r表示将光标的位置回退到本行的开头位置end=""意思是末尾不换行在python里面,print()函数默认换行,即默认参数end='\n'foriinrange(3):print("HelloWorld")可以设置print()函数的参数end=''",从而实现不换行foriinrange(3):print("HelloWorld",end="\n")#end="\n"换行foriinrange(3):print("HelloWorld",end="")#end=""不换行为了达到显示当前程序运行...
继续阅读 >