我正在尝试制作一个游戏,每次玩游戏时,都会从ini文件中的值中扣除玩家.5。但是我一直收到错误,我不知道该怎么做。这是我的代码。不要担心评论,这些是给我的,我稍后关闭while循环。这只是代码的一部分。顺便说一句,代码工作,只是没有。感谢。
def rerun():
import ConfigParser
from ConfigParser import ConfigParser
parser = ConfigParser()
parser.read('Game.ini')
PlrMny = parser.get('money_value', 'Amount')
#config = ConfigParser.ConfigParser()
configFile = open("C:\Python27\Game.ini", "w")
#config.read(configFile)
#valueamount = config.getfloat("section","starting_value")
print "You will be given a $10 starting amount. Each game costs $.50 to play and is
deducted when you input the first value."
print "\nGetting one match gives $1 and the output is multiplied by 2 for each extra
match."
print "\nCurrent Amount =",PlrMny,
def gamble():
PlrMny = parser.get('money_value', 'Amount')
import random
import sys
number1 = random.randint (1, 20)
number2 = random.randint (1, 20)
number3 = random.randint (1, 20)
number4 = random.randint (1, 20)
number5 = random.randint (1, 20)
def input():
c = 0
print "\n\n\n\nTry guess what five numbers the computer will guess. Type '100'
in any of the inputs to close program prematurely"
print "Money =",PlrMny,
#parser.set("money_value", "Amount",10000)
#parser.write ('Game.ini')
while True:
try:
User11 = int(raw_input( "\n\nNumber 1 : "))
parser.set('money_value','Amount',float(PlrMny) - .5)
parser.write (configFile)
str(PlrMny)
if User11 < 1:
print "Error"
elif User11 == 100:
sys.exit()
elif User11 > 20:
print "Error"
else:
break
except ValueError:
print "Error"
这是错误:
Traceback (most recent call last):
File "C:\Python27\Gamb Game.py", line 183, in <module>
rerun()
File "C:\Python27\Gamb Game.py", line 182, in rerun
gamble()
File "C:\Python27\Gamb Game.py", line 19, in gamble
PlrMny = parser.get('money_value', 'Amount')
File "C:\Python27\lib\ConfigParser.py", line 623, in get
return self._interpolate(section, option, value, d)
File "C:\Python27\lib\ConfigParser.py", line 663, in _interpolate
if value and "%(" in value:
TypeError: argument of type 'float' is not iterable
答案 0 :(得分:2)
这可以解决您的问题:
parser.get('money_value','Amount',True)
当然,你也可以使用:
PlrMny = float(PlrMny) -.5
parser.set('money_value','Amount',str(PlrMny))
问题是parser.get期望一个字符串值,但正在读取一个浮点数。因此,您拥有的两个选项是将值保存为字符串(这是第二个选项正在执行的操作),或者使用raw = True读取值(这是第一个选项正在执行的操作)。
答案 1 :(得分:0)
我不知道第19行可能出现的问题。您的配置如何?尝试
parser.getfloat('money_value','Amount')
答案 2 :(得分:0)
好的,你在一个函数中创建一个解析器
def rerun():
import ConfigParser
from ConfigParser import ConfigParser
parser = ConfigParser()
parser.read('Game.ini')
你将在另一个中使用它。
def gamble():
PlrMny = parser.get('money_value', 'Amount')
这应该失败,因为解析器是重新运行的局部变量而不是在赌博中声明。