#!/usr/bin/env python
#_*_ coding : uft-8 _*_
 
import string
import unicodedata
 
with open('poeme.txt', 'r') as tete:
    poeme = tete.read()
 
 
print("Quel est ton nom?")
 
nom = raw_input()
 
vowels = ('a', 'e', 'i', 'o', 'u','y', 'A', 'I', 'E', 'O', 'U','Y')
 
for char in poeme:
 
    if char in vowels:
 
poeme = poeme.replace(char, '')
	print poeme

If you want to know what sentence fits best with your personality, tell me where you were born.
marche
The sentence that fits you most is : Le pied crisse

Now, if you want to know what your astrological word is, tell me how old you are.
20
Your astrological word is : est

Now please leave.