标签: python python-3.x for-loop sleep
我有这个:
for c in hello: print(c, end='') if c == "." or c == "!" or c == "?": sleep(0.5) else: sleep(0.1)
当我运行它时,我什么也看不见,几秒钟后我就看到了我的所有文字。 为什么呢?