我創建了編號爲1-10的名稱列表。我希望用戶能夠輸入一個數字(1-10)來選擇一個名字。我有以下代碼,但尚未能得到它的工作。我是python的新手。感謝您的幫助從python列表中選擇一個項目
def taskFour():
1 == Karratha_Aero
2 == Dampier_Salt
3 == Karratha_Station
4 == Roebourne_Aero
5 == Roebourne
6 == Cossack
7 == Warambie
8 == Pyramid_Station
9 == Eramurra_Pool
10 == Sherlock
print''
print 'Choose a Base Weather Station'
print 'Enter the corresponding station number'
selection = int(raw_input('Enter a number from: 1 to 10'))
if selection == 1:
selectionOne()
elif selection == 2:
selectionTwo()
elif selection == 3:
selectionThree()
你需要了解Python的基本語法規則。 – thavan 2013-04-30 13:09:20
這是你完整的Python代碼來做你想做的事嗎?因爲Python語法不匹配。 – 2013-04-30 13:11:30
elif語句繼續到10,這是你的意思嗎? – goat 2013-04-30 13:16:16