2016-11-13 77 views
-8

如何讓用戶(輸入)從一個句子/字符串中選擇一個單詞,然後使用python 3.4.3打印出所選單詞的位置???如何讓用戶從字符串中選擇一個單詞

+0

你嘗試過什麼嗎? – Fejs

+2

你寫了一些代碼來做到這一點。所以SO不在這裏爲你做功課。 – jonrsharpe

+0

真的不知道該怎麼說纔是誠實的,而不是作業 –

回答

1
>>> foo = 'This is a sentence' 
>>> foo 
'This is a sentence' 
>>> choice = input('Choose a word from the sentence ') 
Choose a word from the sentence is 
>>> foo = foo.split() 
>>> foo 
['This', 'is', 'a', 'sentence'] 
>>> if choice in foo: 
...  print(foo.index(choice)) 
... 
1 
>>> 

開關從列表回字符串

>>> foo = ' '.join(foo) 
>>> foo 
'This is a sentence' 
>>> 
+0

非常感謝你,非常感謝 –

+0

下一次,嘗試一點研究,檢查一些教程.. –

+0

好的隊友,試着看,但不知道要搜索什麼 –

相關問題