in Python, write a program that calculates the AT and GC content (i.e. the percentage of G and C, and the percentage of
Posted: Mon Jun 06, 2022 5:27 pm
in Python, write a program that calculates the AT and GC content
(i.e. the percentage of G and C, and the percentage of A and T) in
a given sequence. Ask the user for a DNA sequence and store
it in a string.
Print out the results to the screen, the result should look
something like this:
The GC content of the DNA sequence given is: 48.5%
The AT content of the DNA sequence given is: 51.5%
(i.e. the percentage of G and C, and the percentage of A and T) in
a given sequence. Ask the user for a DNA sequence and store
it in a string.
Print out the results to the screen, the result should look
something like this:
The GC content of the DNA sequence given is: 48.5%
The AT content of the DNA sequence given is: 51.5%