publicMasters/python/2/1LoopOnWord.py

9 lines
138 B
Python
Raw Normal View History

#! /usr/bin/python3
# -*- coding: utf-8 -*-
voyelles="aeiouy"
for element in voyelles:
print(ord(element)," ", end=' ')
print("\n")