Following is a program to accept the String which contains all the vowels :
string = input("Enter the string ")
vowel_2= ["a","e","i","o","u"]
for i in vowel_2:
if i not in string.lower() :
print("invalid string")
else:
print("string accepted")Following is a program to accept the String which contains all the vowels :
string = input("Enter the string ")
vowel_2= ["a","e","i","o","u"]
for i in vowel_2:
if i not in string.lower() :
print("invalid string")
else:
print("string accepted")