Write a Python program that converts an alignment in PHYLIP non-interleaved format to PHYLIP interleaved. For example if the input is 2 23 human ACCTAACCGGCGTACGTGGGGGA mouse ACCTAACCGGCGTA------ACC then the output should be 2 23 human ACCTAACCGG mouse ACCTAACCGG human CGTACGTGGG mouse CGTA------ human GGA mouse ACC You solution should work for any number of sequences and any sequence length. Each block in the interleaved format can have upto 10 characters of the sequence. Submit your solution in class on Nov 26th.