Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. bytes = "011011010110000101110010011001110110000101110011001000000110110001100001011100000110000101110011"
  2. A0 = "1100110"
  3. A1 = list(A0)
  4. A = map(int, A1)
  5.  
  6. if ((A[0] + A[2] + A[4] + A[6]) %2) > 0 :
  7. print("y1 blogas")
  8. if ((A[1] + A[2] + A[5] + A[6]) %2) > 0 :
  9. print("y2 blogas")
  10. if ((A[3] + A[4] + A[5] + A[6]) %2) > 0 :
  11. print("y4 blogas")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement