Answers for "find vowel in python"

-1

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)
Posted by: Guest on July-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language