forked from quentin/quentin.dufour.io
Missing space
This commit is contained in:
parent
16c1011d2a
commit
33bdebf49d
2 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ with open('communication_vBZvcbm.txt', 'rb') as f:
|
||||||
all_bytes = all_bytes[0] + all_bytes[1]
|
all_bytes = all_bytes[0] + all_bytes[1]
|
||||||
for n in range(1,128):
|
for n in range(1,128):
|
||||||
print("\033c")
|
print("\033c")
|
||||||
print("==== try number " + str(n) + "==== \n\n")
|
print("==== try number " + str(n) + " ==== \n\n")
|
||||||
dec = [0] * len(all_bytes)
|
dec = [0] * len(all_bytes)
|
||||||
for i in range(len(all_bytes)):
|
for i in range(len(all_bytes)):
|
||||||
dec[i] = (all_bytes[i] + n) % 128
|
dec[i] = (all_bytes[i] + n) % 128
|
||||||
|
|
|
@ -3,7 +3,7 @@ with open('communication_vBZvcbm.txt', 'rb') as f:
|
||||||
all_bytes = all_bytes[0] + all_bytes[1]
|
all_bytes = all_bytes[0] + all_bytes[1]
|
||||||
for n in range(1,128):
|
for n in range(1,128):
|
||||||
print "\033c"
|
print "\033c"
|
||||||
print "==== try number " + str(n) + "==== \n\n"
|
print "==== try number " + str(n) + " ==== \n\n"
|
||||||
dec = [0] * len(all_bytes)
|
dec = [0] * len(all_bytes)
|
||||||
for i in range(len(all_bytes)):
|
for i in range(len(all_bytes)):
|
||||||
dec[i] = (ord(all_bytes[i]) + n) % 128
|
dec[i] = (ord(all_bytes[i]) + n) % 128
|
||||||
|
|
Loading…
Reference in a new issue