一文秒懂python中的 \r 与 end=‘’ 巧妙用法

时间:2022-10-19 10:37:33

/r的用法与end=""用法

  •   表示将光标的位置回退到本行的开头位置
  • end="" 意思是末尾不换行

在python里面,print()函数默认换行,即默认参数end = " "

for i in range(3):
    print("Hello World")

一文秒懂python中的 \r 与 end=‘’ 巧妙用法

可以设置print()函数的参数end=""",从而实现不换行

for i in range(3):
    print("Hello World", end="
")  # end="
"换行
 
for i in range(3):
    print("Hello World", end="")  # end=""不换行

一文秒懂python中的 \r 与 end=‘’ 巧妙用法

为了达到显示当前程序运行进度,每运行一次之后达到的进度需要覆盖前面的一次运行达到的进度,所以我么需要用到

# 进度条功能
import time
 
for i in range(10):
    print("
" + "■"*i, sep="", end="")
    time.sleep(0.2)
print("
下载完成")

一文秒懂python中的 \r 与 end=‘’ 巧妙用法

如果不配合end="",即print()函数默认换行

# 进度条功能
import time
 
for i in range(10):
    print("
" + "■"*i, sep="")
    time.sleep(0.2)
print("
下载完成")

一文秒懂python中的 \r 与 end=‘’ 巧妙用法

如果不配合使用 ,则不会实现覆盖写

# 进度条功能
import time
 
for i in range(10):
    print("■"*i, sep="", end="")
    time.sleep(0.2)
print("
下载完成")

一文秒懂python中的 \r 与 end=‘’ 巧妙用法

与 end="‘结合,实现本地时间实时显示

import time
while True:
    task_time = time.strftime("%H:%M:%S", time.localtime())
    time.sleep(0.8)
    print("
当前系统时间为:%s"%task_time, end="")

实现结果,自己跑一下噢!

参考:

https://www.jianshu.com/p/7dd4a545e030

https://www.cnblogs.com/zzliu/p/10156658.html

到此这篇关于一文秒懂python中的 与 end=‘" 结合使用的文章就介绍到这了,更多相关python中的 与 end=‘"内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/A496608119/article/details/115997999