好了,所以我所做的就是計數元音的數量在一個字符串在Python
def countvowels(st):
result=st.count("a")+st.count("A")+st.count("e")+st.count("E")+st.count("i")+st.count("I")+st.count("o")+st.count("O")+st.count("u")+st.count("U")
return result
這工作(我知道壓痕可能是錯的這個職位,但我的方式有它在python縮進,有用)。
有沒有更好的方法來做到這一點?使用for循環?
還看到:http://stackoverflow.com/questions/19237791/counting-vowels-in-python – Paul 2014-10-28 05:15:32
這個問題似乎會偏離因爲它是關於改善工作代碼 – 2014-10-28 15:29:22