Решение заданий практикума №7
Содержание
aminoacid.py
1 k = input('Enter the aminoacid name: ')
2 k = k.upper()
3
4 aro = {'F', 'W', 'Y'}
5 ali = {'A', 'G','I', 'L', 'V'}
6 al = {'A', 'R', 'N', 'D', 'C', 'Q', 'E', 'G', 'H', 'I', 'L', 'K', 'M', 'P', 'S', 'T', 'W', 'Y', 'V'}
7
8 while k not in al:
9 k = input('Error. Try again: ').upper()
10
11 if k in aro:
12 print('aromatic')
13 elif k in ali:
14 print('aliphatic')
15 else:
16 print('other')
squares.py
power-of-three.py
head.py
grep.py
seqnames.py