Vowels

Report a typo

Read a string from the input and print a list of vowels that belong to that string.

All vowels are enlisted in a variable of the same name.

Sample Input 1:

invertebrate

Sample Output 1:

['i', 'e', 'e', 'a', 'e']
Write a program in Python 3
vowels = 'aeiou'
# create your list here
___

Create a free account to access the full topic