1
0
forked from tdwojak/Python2017

task09 fixed

This commit is contained in:
s45147 2017-12-16 20:06:49 +01:00
parent f499b8eccd
commit 6f36635a56

View File

@ -14,7 +14,7 @@ def leet_speak(text):
for znak in text:
if znak in slownik:
dekod += slownik[znak]
dekod += str(slownik[znak])
else:
dekod += znak