私はプログラミングがまったく初めてで、ジャンケンのゲームに取り組んできました。最後の部分(部分)を除いてすべて機能しif
ます。
x = ("rock")
y = ("paper")
z = ("scissors")
print(x)
print(y)
print(z)
choices1 = (x, y, z)
choices2 = (x, y, z)
import random
print("player 1 chose...")
print(random.choice(choices1))
print("player 2 chose...")
print(random.choice(choices2))
if random.choice(choices1) = rock and random.choice(choices2) = scissors:
print("player 1 wins")
スクリプトを実行しようとすると、次のように表示されます。
File "<string>", line 14
if random.choice(choices1) = rock and random.choice(choices2) = scissors:
^
SyntaxError: invalid syntax