17.零散的知识

1. print 打印技巧

1.1 数字时钟样式

使用 \r + end="" 可以实现数字时钟.

1
2
3
print(f"{self._hour:-02d}:{self._minute:-02d}:{self._second:-02d}", end="")
time.sleep(1)
print("\r", end="")

1.2 加载进度条样式

1
2
print("🟥", end=' ')
time.sleep(0.5)

Kapture 2023-04-24 at 11.31.29