Tuple Python Tutorial

s = 'first'
s = s + ' second'
print s
t = ('third', 'fourth')
print t
t = t + ('fifth', 'sixth')
print t