Www.py4e.com

Chapter 06 - Strings--- String Data Type >>> str1 = "Hello" >>> str2 = 'there' >>> bob = str1 + str2 >>> print bob. Hellothere >>> str3 = '123' >>> str3 = str3 + 1 ................
................