2017-03-11 15 views
-1

私は基本的にcoinflipスクリプトのようにしたいと思っています。最後のprint.Could you help me?Python coinflip無効な構文print help pls

import random 
print('Choose a number between 1 and 0') 
answer=input() 
number=random.choice('10') 
random.choice('10') 
print(random.choice('10')) 
if answer == (number 
       print("You won")) 

答えて

1
if answer == (number 
       print("You won")) 

if answer == number: 
    print("You won") 
する必要があります