**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")
我已經完成了這個到目前爲止,但我沒有得到正確的分數任何幫助嗎? 我沒有得到關於分數或計數 我只得到「你有任何輸出。 就是這樣我想在python中設置一個分數count 3.3.2