如何在命令行的特定位置获取raw_input()

时间:2016-01-19 08:38:17

标签: python

我正在为游戏制作一个简单的高分系统。 我正在使用" colorama"在命令行的特定位置打印文本。 如何在命令行的特定位置获取输入?

score = 15
print '\033[10;20H{}'.format("Game over")
if score > 10:
    name = raw_input("Enter your name: ") #I want to get this in the position y = 11 , x = 20
    print '\033[12;12H{}'.format("Your score was added to high scores")

0 个答案:

没有答案