Python gotcha

Python is so intuitive.

This is a list:

['foobar']

And so is this:

['foobar',]

This is a tuple:

('foobar',)

This is a str:

('foobar')

That's completely obvious.