#day-8
Read more stories on Hashnode
Articles with this tag
Write a Python program to count the number of vowels in a given string : vowels = set("aeiouAEIOU") count = 0 string = input("Enter a string: ") for...