Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

is vowel python

vowels = {'a','e','i','o','u'}

my_string = "This is my awesome stupendous string!"

for c in my_string:
  if c in vowels:
    print(c)
 
PREVIOUS NEXT
Tagged: #vowel #python
ADD COMMENT
Topic
Name
3+2 =