notebook.community
Edit and run
In [ ]: # Ex 1.2.2 # genetic code serine = 'AGU' leucine = 'CUU' tyrosine = 'UAU' cysteine = 'UGU' # DNA sequence for SYLYC seq = serine + tyrosine + leucine + tyrosine + cysteine print(seq)
# Ex 1.2.2 # genetic code serine = 'AGU' leucine = 'CUU' tyrosine = 'UAU' cysteine = 'UGU' # DNA sequence for SYLYC seq = serine + tyrosine + leucine + tyrosine + cysteine print(seq)