Tuple Python Tutorial

print ['abc']
print type(['abc'])   # a list
print ('xyz')
print type(('xyz'))   # a string, not a tuple
print ('xyz',)