#String tests a = " !Hello World! " print(a.upper()) print(a.lower()) print(a.strip()) #strip(str_of_targ) print(a.strip((" !"))) print(a.replace("H", "J")) print(a.split(" "))