-5
我試圖返回字符串中的一些字母,我不明白爲什麼它不起作用。在字符串"mldtmgm"
中,它應返回,因爲訂單find
應返回字符串中所有m的總和。它返回,我不知道是不是因爲使用find
或其他東西不好。python程序不起作用
def ex4(str4):
someLetter = str4[ :1]
return str4.find(someLetter)
print ex4("mldtmgm")
請正確描述您的問題。 –
你可以使用'return str4.count(someLetter)' –