msg = "hello 123 WORLD"
#将字符串中的"WORLD"替换为"Python"
new_msg = msg.replace("WORLD","Python")
#将整个字符串转换为小写 
last_msg = new_msg.lower()
print("字符串转换为小写 ：",last_msg)