1)How do I replace uppercase A and lowercase 'a' with number 1 ?
encrp_key = input('Enter the number 1' )               
msg = input('Enter some lowercase and some uppercase')              
    if encrp_key == 1:
        new_msg = msg.replace('a ','1').replace('e','2')\
                  .replace('i','3').replace('o','4').replace('u','5')
                ## if user types 'ABBSAS acbdcd '
                #   how do i replace 'A' and 'a' with 1 , E and e with 2 and                                                       
                #   I and i with 3   and so on.
 
     
     
    