str1 = "hello, world"str2 = "Python is a great language"print(str1.upper()) # 输出:"HELLO, WORLD"print(str2.upper()) # 输出:"PYTHON IS A GREAT LANGUAGE"