amélioration code + ajout d'une classe
This commit is contained in:
parent
54ae91d5d1
commit
334d60922a
1 changed files with 42 additions and 20 deletions
|
@ -1,22 +1,44 @@
|
||||||
def wordforphone(mot = None):
|
class Wordtophone:
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.replace = {
|
||||||
|
"a": "2",
|
||||||
|
"b": "22",
|
||||||
|
"c": "222",
|
||||||
|
"d": "3",
|
||||||
|
"e": "33",
|
||||||
|
"f": "333",
|
||||||
|
"g": "4",
|
||||||
|
"h": "44",
|
||||||
|
"i": "444",
|
||||||
|
"j": "5",
|
||||||
|
"k": "55",
|
||||||
|
"l": "555",
|
||||||
|
"m": "6",
|
||||||
|
"n": "66",
|
||||||
|
"o": "666",
|
||||||
|
"p": "7",
|
||||||
|
"q": "77",
|
||||||
|
"r": "777",
|
||||||
|
"s": "7777",
|
||||||
|
"t": "8",
|
||||||
|
"u": "88",
|
||||||
|
"v": "888",
|
||||||
|
"w": "9",
|
||||||
|
"x": "99",
|
||||||
|
"y": "999",
|
||||||
|
"z": "9999",
|
||||||
|
" ": " -"
|
||||||
|
}
|
||||||
|
|
||||||
|
def wordforphone(self, mot = None):
|
||||||
if not mot:
|
if not mot:
|
||||||
mot = input()
|
mot = input()
|
||||||
mot = list(str(mot).lower())
|
mot = str(mot).lower()
|
||||||
mot2 = []
|
|
||||||
a = 0
|
for key in self.replace:
|
||||||
for n in mot:
|
mot = mot.replace(key, f"{self.replace[key]} ")
|
||||||
a += 1
|
return print(mot)
|
||||||
if n != " ":
|
|
||||||
n = n.replace("a","2").replace("b","22").replace("c","222").replace("d","3").replace("e","33").replace("f","333").replace("g","4").replace("h","44")
|
|
||||||
n = n.replace("i","444").replace("j","5").replace("k","55").replace("l","555").replace("m","6").replace("n","66").replace("o","666").replace("p","7")
|
|
||||||
n = n.replace("q","77").replace("r","777").replace("s","7777").replace("t","8").replace("u","88").replace("v","888").replace("w","9").replace("x","99")
|
|
||||||
n = n.replace("y","999").replace("z","9999")
|
|
||||||
mot2.append(n)
|
|
||||||
if a < len(mot):
|
|
||||||
mot2.append(" - ")
|
|
||||||
mot2 = str(mot2).replace("[","").replace("]","").replace("'","").replace(",","").replace(" "," ")
|
|
||||||
print(mot2)
|
|
||||||
input("PRESS ENTER TO EXIT")
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
wordforphone()
|
Wordtophone().wordforphone()
|
||||||
|
|
Reference in a new issue