连接两个字符串,str1保存的值为“Mortal”,str2保存的值为“Kombat”,然后打印连接后的字符串str3,“MortalKombat”。
str1="Mortal" str2="Kombat" str3=str1 + str2 print(str3)