من این کد رو برای تمرین دوم نوشتم:
#aeiou
def vowles(string):
vowels_count=0
for j in string:
if string[j]=="a" or string[j]=="e" or string[j]=="i" or string[j]=="o" or string[j]=="u":
vowels_count=vowels_count+1
return vowels_count
با این ارور مواجه شدم:
vowels_count=vowels_count+1 ^ IndentationError: expected an indented block
متوجه اشتباهم نمیشم