def coins():
#randomly generated amount of coins, can throw them
global num_coins
print 'You have', num_coins, 'coins left.'
opt = yon('You could throw a coin if you wanted too. Y/N')
if opt == 'Y' and num_coins >0 :
print 'You throw a coin. It clutters around the ground.'
num_coins = int(num_coins)
num_coins -= 1
num_coins = str(num_coins)
print 'You have', num_coins, 'coins left.'
else:
'You decide to keep your change for later.'
if num_coins == 1:
inventory['coins'] = inventory['coin']
if num_coins == 0:
del inventory['coin']
return num_coins
return options()
amount = random.randrange(5, 12)
num_coins = str(amount)
inventory = ['Lighter', 'Phone', num_coins + ' Coins', 'Empty', 'Empty']
大家好,制作一个基于文本的游戏。我花了很长时间试图让我的代码工作。当我调用函数coins(),并选择扔硬币时。它不会从全局变量num_coins中拿走任何硬币。我有一个单独的函数,调用我代码中的所有函数,(options())。它也不会将我返回到函数options()。如有任何帮助,非常感谢。
不需要一直在int
和str
之间切换。您可以使用str.format
将值包含在字符串中:
print "You have {0} coins left.".format(num_coins)
不使用global
,将num_coins
作为参数,然后将return
作为参数:
def coins(num_coins):
...
return num_coins
现在当你调用coins
时,执行:
num_coins = coins(num_coins)
现在发生的事情更清楚了。