Horje
Display vowels in a string using for loop Code Example
Display vowels in a string using for loop
text = input('Enter text: ')

for char in text:
    if char.lower() in 'aeiou':
        print(char)




Python

Related
Drawing diff circles with random radius in diff positions . Code Example Drawing diff circles with random radius in diff positions . Code Example
changing instance variable python inheritance Code Example changing instance variable python inheritance Code Example
python 3 define type in arguments with default value Code Example python 3 define type in arguments with default value Code Example
how to get device hwid cmd Code Example how to get device hwid cmd Code Example
change between two python 3 version in raspberrry pi Code Example change between two python 3 version in raspberrry pi Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7