import random
while True:
dice1=random.randint (1,6)
dice2=random.randint (1,6)
strengthone = input ("Player 1, between 1 and 10 What do you want your characters strength to be? Higher is not always better.")
skillone = input ("Player 1, between 1 and 10 What do you want your characters skill to be? Higher is not always better.")
if str(strengthone) > int(10):
print ("Incorrect value")
else:
print ("Good choice.")
if skillone > 10:
print ("Incorrect value.")
else:
print ("Good choice.")
strengthtwo = input ("Player 2, between 1 and 10 what do you want your characters strength to be? Higher is not always better.")
skilltwo = input ("Player 2, between 1 and 10 what do you want your characters skill to be? Higher is not always better.")
if strengthtwo > 10:
print ("Incorrect value.")
else:
print ("Good choice.")
if skillone > 10:
print ("Incorrect value.")
else:
print ("Good choice.")
strengthmod = strengthone - strengthtwo
skillmod = skillone - skilltwo
print ("Player 1, you rolled a", str(dice1))
print ("Player 2, you rolled a", str(dice2))
if dice1 == dice2:
print ("")
if dice1 > dice2:
newstrengthone = strengthmod + strengthone
newskillone = skillmod + skillone
if dice2 > dice1:
newstrengthtwo = strengthmod + strengthtwo
newskilltwo = skillmod + skilltwo
if dice1 < dice2:
newstrengthone = strengthmod - strengthone
newskillone = skillmod - skillone
if dice2 < dice1:
newstrengthtwo = strengthmod - strengthtwo
newskilltwo = skillmod - skilltwo
if strengthone == 0:
print ("Player one dies, well done player two. You win!")
if strengthtwo == 0:
print ("Player two dies, well done player one. You win!")
if newstrengthone == 0:
print ("Player one dies, well done player two. You win!")
if newstrengthtwo == 0:
print ("Player two dies, well done player one. You win!")
break
它用于学校项目,因此代码的目标没有多大意义。由于缩进,我有一些语法错误。我把它们整理好了,现在我有了这个:
Traceback (most recent call last):
File "N:\Computing\Task 3\Program.py", line 11, in <module>
if str(strengthone) > int(10):
TypeError: unorderable types: str() > int()
有任何想法吗?