Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- s = input('Слово: ')
- s1 = s.lower()
- str0 = ''
- if 'a' in s1:
- str0 += 'a '
- if 'e' in s1:
- str0 += 'e '
- if 'i' in s1:
- str0 += 'i '
- if 'o' in s1:
- str0 += 'o '
- if 'u' in s1:
- str0 += 'u '
- print(str0)
Advertisement
Add Comment
Please, Sign In to add comment