inky (owner)

Revisions

gist: 224109 Download_button fork
public
Public Clone URL: git://gist.github.com/224109.git
Embed All Files: show embed
a or e or i or o or u.py #
1
2
3
4
5
6
7
8
import sys
line = sys.stdin.readline()
vowels = 'aeiouAEIOU'
 
if any(c in vowels for c in line):
    print('Line has vowels')
else:
    print('Line has NO vowels')