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()
何か案は?