''' In this exercise we will create a function which returns the reverse complement of a DNA sequence. This is a useful case to create a function as finding the reverse complement of any sequence follows the same logic, so instead of copy-pasting the code, we create a function and call it every time we need to find the reverse complement of a sequence. The function should be able to find the reverse complement of any DNA sequence (so also for varying lengths). Name the function `reverse_complement`. You can assume that DNA consists only of A, T, C and G. After you've defined the function, call it for the given DNA sequence and print the output. Example of a reverse complement: DNA: ACCTGTAAA Reverse Complement: TTTACAGGT How can a list or string be reversed? Ask AI! There are multiple approaches for this exercise (using dictionaries, conditionals, etc.), ask AI for ideas on how to start. ''' DNA = "TTGTGATATAGGTACCAGTCACGTTGACGTAGTCTAGCTAGCATGTCAAGCACTTGAA" # Your code here