为什么此错误在第一行弹出:
NameError:名称“ random”未定义
correctPath = random.randint(1,2,3)
if chosenPath == str(correctPath):
print("Thank you for your help")
print("this has been altered for creative purposes")
elif chosenPath != str(correctPath):
print("Thanks in advance.")
else:
print ("code to be written")
答案 0 :(得分:0)
random.randint(a,b)
函数返回随机的整数 N ,使得 a <= N <= b 。这意味着您只能使用两个参数,而不必使用第三个参数。