Write a Python script that translates a DNA sequence in FASTA format into a protein sequence. The DNA sequence length will not necessarily be a multiple of three. It contains one start codon (AUG) and one stop codon (UAG). Your script should start translating from the start codon AUG and stop when it sees the stop codon UAG. For example if the input file contains >human GGAUGAGGUACGCCGCCAGAUAGTTAA then the output should be MRYAAR. Submit a hardcopy in class on Oct 12th.