1 2 3 4 5 6 7 8 9 10
str1 = "welcome" str2 = "welcome" print(id(str1)) print(id(str2)) str1 += " mike" print(str1) print(id(str1))