projekty
/
krypto.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
drobnosti
[krypto.git]
/
spolecne.py
1
ABECEDA = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
2
MABECEDA = ' ABCDEFGHIJKLMNOPQRSTUVWXYZ'
3
4
def cisla_na_text(cisla):
5
"""Z pole cisel udela textovy retezec (1 = A, ...)."""
6
return ''.join([MABECEDA[c] for c in cisla])