我刚在YouTube观看了一段关于大富翁游戏数学讨论的视频,除了所有内容之外,他们还在下载框中添加了Python代码,因此我下载了它以试用它......
这是代码:
import random
from random import shuffle
def monop(finish_order=6,games_order=3):
finish = 10**finish_order
games = 10**games_order
squares = []
while len(squares) < 40:
squares.append(0)
# roll values are values from a six by six grid for all dice rolls
rollvalues = [2,3,4,5,6,7,3,4,5,6,7,8,4,5,6,7,8,9,5,6,7,8,9,10,6,7,8,9,10,11,7,8,9,10,11,12]
games_finished = 0
while games_finished < games:
master_chest = [0,40,40,40,40,10,40,40,40,40,40,40,40,40,40,40]
chest = [i for i in master_chest]
shuffle(chest)
master_chance = [0,24,11,'U','R',40,40,'B',10,40,40,5,39,40,40,40]
chance = [i for i in master_chance]
shuffle(chance)
doubles = 0
position = 0
gos = 0
while gos < finish:
diceroll = int(36*random.random())
if diceroll in [0,7,14,21,28,35]: # these are the dice index values for double rolls
doubles += 1
else:
doubles = 0
if doubles >= 3:
position = 10
else:
position = (position + rollvalues[diceroll])%40
if position in [7,22,33]: # Chance
chance_card = chance.pop(0)
if len(chance) == 0:
chance = [i for i in master_chance]
shuffle(chance)
if chance_card != 40:
if isinstance(chance_card,int):
position = chance_card
elif chance_card == 'U':
while position not in [12,28]:
position = (position + 1)%40
elif chance_card == 'R':
while position not in [5,15,25,35]:
position = (position + 1)%40
elif chance_card == 'B':
position = position - 3
elif position in [2,17]: # Community Chest
chest_card = chest.pop(0)
if len(chest) == 0:
chest = [i for i in master_chest]
shuffle(chest)
if chest_card != 40:
position = chest_card
if position == 30: # Go to jail
position = 10
squares.insert(position,(squares.pop(position)+1))
gos += 1
games_finished += 1
return squares
被称为:monopoly-v1.py
现在,当我尝试编译并将其运行到终端时,我会遇到问题&#34;。
写作
python monopoly-v1.py
在终端中,我没有收到任何错误或警告,但它没有发生任何事情......
如果我尝试
python monopoly-v1.py
然后
./monopoly-v1.py
然后就是这样说的:
./ monopoly-v1.py:line 1:意外令牌('
./monopoly-v1.py: line 1:
def monop附近的语法错误(finish_order = 6,games_order = 3):&#39;
我不明白出了什么问题。顺便说一句,python或python3是相同的,我的意思是:第一步没有出现错误。
有什么想法吗?
谢谢!
答案 0 :(得分:4)
此代码仅仅是一个函数定义和一些导入。如果您不运行该功能,它将无效。这就是python script.py
没有显示任何内容的原因。
现在,当你尝试这样做时:
./script.py
shell试图执行Python代码,好像它是用BASH编写的(或者,更一般地说,好像它是 shell脚本),这当然会导致错误。它为什么这样做?因为它告诉通过./
结构执行,但找不到任何用 1 执行它的东西。因此,它最终尝试将其作为shell脚本运行。
<子> 1。而shell实际上进行了搜索。例如,如果您使用特殊的 shebang 为您的代码添加前缀,它会尝试将其作为Python代码运行:#!python
或#!env python
或#!/usr/bin/env python
或甚至{ {1}} 子>
答案 1 :(得分:2)
您尚未调用任何要执行的功能。如果您想从命令行调用monop
函数,可以使用-c
参数来执行此操作:
$ python -c 'from monopoly-v1 import monop; print monop(6, 3)'
请注意,如果使用Python 3,则打印函数语法会有所不同:
$ python -c 'from monopoly-v1 import monop; print(monop(6, 3))'
答案 2 :(得分:2)
只需添加:
if __name__ == '__main__':
monop()
在monopoly-v1.py
结束时