Write a Python program that prints the number of A's in each column of a multiple sequence alignment. For example for the multiple alignment below >human ACCT >mouse ACCT >cat TCCT >dog ACAT the output should be 2 0 1 0 You solution should work for any number of sequences and any sequence length. Submit your solution in class on Nov 23rd.