Advertisement
12yz12ab

Untitled

Feb 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. primes = [2,3,5,7,11,13,17,19]
  2. for x in primes:
  3. if primes[x] % 4 == 0:
  4. print("A")
  5. elif primes[x] % 4 == 1:
  6. print("C")
  7. elif primes[x] % 4 == 2:
  8. print("G")
  9. elif primes[x] % 4 == 3:
  10. print("T")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement