我正在为游戏制作一个简单的高分系统。 我正在使用" 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")