is vowel python

Solutions on MaxInterview for is vowel python by the best coders in the world

showing results for - "is vowel python"
Chris
11 Jan 2018
1vowels = {'a','e','i','o','u'}
2
3my_string = "This is my awesome stupendous string!"
4
5for c in my_string:
6  if c in vowels:
7    print(c)