From 438bc837f1319b96a70f61ce2de2c0dbdd76be2a Mon Sep 17 00:00:00 2001 From: rav4s Date: Fri, 6 Nov 2020 10:43:34 -0600 Subject: [PATCH] changed variable name from thing to truncated --- converter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/converter.py b/converter.py index 4ee77ce..eb10a0a 100644 --- a/converter.py +++ b/converter.py @@ -62,6 +62,6 @@ def translation(final_rna): strand = input("Enter the DNA strand to be transcribed and translated: ") strand = strand.upper() messenger_rna = transcription(strand) -thing = start_to_stop(messenger_rna) +truncated = start_to_stop(messenger_rna) print("Here are the amino acids:") -print(translation(thing)) +print(translation(truncated))