Write a program to calculate the molecular weight of a protein sequence assuming
a. mol.wt per aminoacid = 110 Da if sequence length is less than 10
b. mol.wt per aminoacid = 105 Da if sequence length is more than 10
1
Expert's answer
2020-11-02T11:13:21-0500
thread = input("Enter the sequence of amino acids separated by a space: ").split()
molWt = len(thread)
if (molWt > 10):
molWt *= 105
else:
molWt *= 110
print("Molecular weight is: " + str(molWt))
Comments
Leave a comment