文字输出字母

时间:2018-06-17 08:43:38

标签: 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)

当我运行它时,我什么也看不见,几秒钟后我就看到了我的所有文字。 为什么呢?

0 个答案:

没有答案