For my question above, I'm terribly stuck. So far, the code I have come up with is:
def count_bases():get_user_input()amountA=get_user_input.count('A')if amountA == 0:print("wrong")else:print ("right",amountA)def get_user_input():one = input("Please enter DNA bases: ")two=list(one)print(two)
My line of thinking is that I first:
1. Ask user to enter the DNA bases (ATCG)
2. Change the user input into a list
3. Going back to the main (count_bases) function, I count the number of 'A', 'T', 'C', 'G'
4. Use 4 if-else statements for the four different bases.
So far, my code only works up to the output of the user's input into a list. After that, an error just pops up.
Appreciate it if someone can point the right path out to me!
Thanks.