Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 66114e34 authored by Nazim@misirlou's avatar Nazim@misirlou
Browse files

nzm

parent 9e4e8bea
No related branches found
No related tags found
No related merge requests found
import sys
ECA=170
#ECA=int ( sys.argv[1] )
TABTRANS='{0:08b}'.format(ECA)[::-1]
x="0100010111"
def val(v):
return 1 if v=='1' else 0
def trans(x):
N=len(x)
out=""
for i in range(N):
a,b,c=x[i-1],x[i],x[(i+1)%N]
itrans=4 * val(a)+ 2 * val(b) + val (c)
out+=TABTRANS[itrans]#str(itrans)
return out
def test():
global x
print(x)
x=trans(x)
print(x)
x=trans(x)
print(x)
test()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment