def crazify(s): # your code here return "" # Testing code below # if ( __name__ == '__main__' ) : # first run s1 = crazify("Elizabeth") s2 = crazify("friends4eva") print("crazify(Elizabeth) = ", s1) print("crazify(friends4eva) = ", s2)