0
試圖打印沒有。的元音。當我運行此代碼時,我得到1,2,3,4
我打算只打印4.我的錯誤在哪裏,我將如何糾正它?計算元音的數量
vowels='a','e','i','o','u'
s= 'hellohello'
count = 0
for letters in s:
if letters in vowels:
count+=1
print (count)
試圖打印沒有。的元音。當我運行此代碼時,我得到1,2,3,4
我打算只打印4.我的錯誤在哪裏,我將如何糾正它?計算元音的數量
vowels='a','e','i','o','u'
s= 'hellohello'
count = 0
for letters in s:
if letters in vowels:
count+=1
print (count)
你大部分都是正確的,但是你打印的是循環而不是最後。
for letters in s:
if letters in vowels:
count+=1
# de indent to close the loop
print (count)
count
應該出的for
loop.So它打印一次。
vowels='a','e','i','o','u'
s= 'hellohello'
count = 0
for letters in s:
if letters in vowels:
count+=1
print (count)
刪除print(count) –