Like in Java, strings in Python are immutable.
len(str) - return the length of the string
+(plus) - return the concatenation of strings
[] - substring operator, return the char or chars in the specific position
>>> str = "spam"
>>> len(str)
4
>>> "No " + str
'No spam'
>>> str[0]
's'
>>> str[0:2]
'sp'
split(sep)
fine(sub) - return the position of the substring, or -1 if not find
replace( old, new )
Regular expression is supported by Python,