9 lines
133 B
Python
9 lines
133 B
Python
|
#! /usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
voyelles="aeiouy"
|
||
|
|
||
|
for element in voyelles:
|
||
|
print(element," ", end=' ')
|
||
|
print("\n")
|