Guest User

Untitled

a guest
Jan 20th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. import random
  2. bases=('A','U','G','C')
  3. aa=[]
  4. for l in range(1,4):
  5. y=random.choice(bases)
  6. aa.append(y)
  7. print(aa)
Add Comment
Please, Sign In to add comment