Advertisement
Guest User

Untitled

a guest
May 25th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. c_b = ''.join(format(ord(b), '08b') for b in c)
  2. bin1.append(c_b[0])
  3.  
  4. bin1_counted = Counter(bin1)
  5.  
  6. Counter({'0': 646491, '1': 603686})
  7. Counter({'0': 642133, '1': 608044})
  8. Counter({'0': 644298, '1': 605879})
  9. Counter({'0': 641961, '1': 608216})
  10. Counter({'0': 641778, '1': 608399})
  11. Counter({'0': 640538, '1': 609639})
  12. Counter({'0': 641531, '1': 608646})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement