All pastes #636867 Raw Edit

mon code

public python v1 · immutable
#636867 ·published 2007-07-28 09:02 UTC
rendered paste body
# -*- coding: cp1252 -*-#mon script pythontab = ''chaine = 'texte'a = 0while a < len(chaine) :    lettre = chaine[a]    if voy(lettre) == 1 :        print '*' ,    else :        print '_' ,    a += 1def voy(a) :    if(a == 'a' or a == 'e' or a == 'i' or z == 'o' or a == 'u' or a == 'y') :        return 1    else :        return 0