Skip to content
Snippets Groups Projects
Commit 1a6b203b authored by Mikołaj Mysiakowski's avatar Mikołaj Mysiakowski
Browse files

decode_t - zakończ przetwarzanie jeśli @

parent 39777dfa
Branches
No related merge requests found
......@@ -27,6 +27,8 @@ def decode_t(fragment):
i = 0
while i < max:
x = fragment[6*i:6*i+6]
if fragment [6*i:6*i+6] == '000000':
return value
y = int(x, 2)
if y < 32:
z = chr(y+64)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment