je veux configurer un score de compter en python 3.3.2

 **count = 0**
 player = input("Player Name: ")
 print("WELCOME TO MY QUIZ %s" % player, )
 print("Would You like to play the quiz ??")
 start = input()
 if start == "Yes" or start == "yes":
    print("Lets Start %s" % player, )
    print("Q1. What is the capital of India ?")
    print("A. Delhi")
    print("B. Mumbai")
    q1 = input()
    if q1 == "A":
         **count += 1**
    else:
         print("")
    print("Q2. How many states are there in India ?")
    print("A. 28")
    print("B. 29")
    q2 = input()
    if q2 == "B":
         count += 1
    else:
         print("")
    print("Q3. What is the capital of Maharashtra ?")
    print("A. Delhi")
    print("B. Mumbai")
    q3 = input()
    if q3 == "B":
        count += 1
    else:
        print("")
    ***print("You got"),str(count)+"/3 right!"***
else:
    print("Thank You, Goodbye")

Je l'ai fait jusqu'à présent, mais im pas obtenir le bon score de l'aide ?
Je n'obtiens aucune sortie concernant le score ou le comte
je ne reçois "que Vous avez:
c'est elle

InformationsquelleAutor user2694486 | 2013-08-18