print ['abc']print type(['abc']) # a listprint ('xyz')print type(('xyz')) # a string, not a tupleprint ('xyz',)