就像在电影和游戏中一样,一个地方的位置会出现在屏幕上,就像是在现场输入一样。我想制作一个关于在 python 中逃离迷宫的游戏。在游戏开始时,它给出了游戏的背景信息:
line_1 = "You have woken up in a mysterious maze"
line_2 = "The building has 5 levels"
line_3 = "Scans show that the floors increase in size as you go down"
在变量下,我尝试为每一行做一个类似于这样的 for 循环:
from time import sleep
for x in line_1:
print (x)
sleep(0.1)
唯一的问题是它每行打印一个字母。它的时机还可以,但我怎样才能让它在一条线上呢?