获取用户输入以声明全局变量(int和string)python

时间:2015-12-02 00:27:59

标签: string variables python-3.x global

我正在为MTG制作一个生命计数器我想询问用户的生命总数和他们的名字。然后在程序中使用两者。我有一个运行和功能程序,它使用声明值为玩家1和2的健康计数以及玩家的标签和文本

 p1hc = 20
 p2hc = 20

我测试了使用“输入”功能设置值并在不同的窗口中打印数字以确保

 p1healthc = input (' What is the starting life count? ')
 p2healthc = input (' What is the starting life count? ')

 print (p1healthc)
 print (p1healthc)

当我使用

将代码添加到运行和工作程序中时

###声明播放器1和播放器2变量的全局运行状况计数值

 p1healthc = input (' What is the starting life count? ')
 p2healthc = input (' What is the starting life count? ')
 p1hc = p1healthc
 p2hc = p2healthc

它会在SHELL窗口中询问并设置值,而不是在之后启动程序窗口。

0 个答案:

没有答案