Python Oddities
>>> a = 'foo' 'bar' >>> a 'foobar'
I just learned this recently. So bizarre!
Python will automatically concatentate two strings next two each other!
>>> a = 'foo' 'bar' >>> a 'foobar'
I just learned this recently. So bizarre!
Python will automatically concatentate two strings next two each other!