-1

あなたが正解した推測と間違った推測の数を出力するには、このプログラムが必要です。"United Kingdom":"London" など、都市と国の辞書 (ccdict と呼ばれる) があります。これはコードです:

def choices (Correct):
    list=[Correct]
    f=0
    cities=ccdict.values()
    while f + 1<5:
        f=f+1
        list.append(cities[random.randint(0, len(cities))])
    list.sort()
    return list


countries = ccdict.keys()
randcountry = countries[random.randint(0, len(countries))]
print "What is the capital of " + randcountry + "?"
print "If you want to stop this game, type 'exit'"
randlist = choices(ccdict[randcountry])

for i in range(0,5):
        print str(i+1) + " - " + randlist[i]

input=raw_input("Give me the number of the city that you think is the capital of " + randcountry + " ")

if input == "exit":                               
    print "Now exiting game!" + sys.exit()       

elif  randlist[int(input)-1] == ccdict[randcountry]:
    print "Correct"

else:
    print "WRONG! The capital of " + randcountry + " is " + ccdict[randcountry]
4

1 に答える 1