【发布时间】:2020-12-01 10:47:10
【问题描述】:
我是新手,在 Python 编程方面经验很少,如果我的术语不正确,请纠正我。
我看到过有关typing effect in Python 的帖子。但我也想在需要你回答或输入内容的脚本中使用这种效果,比如那些选择你自己的冒险游戏。例如:
answer = input("You reach a crossroad, would you like to go left or right?").lower().strip()
if answer == 'left':
answer = input('You encounter a monster, would you like to run or attack?')
elif answer == 'right':
answer = input('You walk aimlessly to the right and fall on a patch of ice.')
我怎么会有这样的东西有打字效果?
【问题讨论】:
-
你的意思是用户的输入会产生效果(当用户键入时),还是提示?如果是后者,为什么链接没有回答您的问题?
标签: python-3.x