Outputs the infinite random genetic code sequence.
https://www.sciencedaily.com/release...0525085123.htm
Code:
#!/usr/bin/python
import random
import time
a = "U..........@"
b = ".........................C"
c = "......A......@"
d = "..........G"
e = "......@"
f = "........@"
while True:
print random.choice([a, b, c, d, e, f])
time.sleep(1)