Hacker News new | ask | show | jobs
by emmelaich 1992 days ago
> cat = ''.join()

Love it. There's so many bits of Python I've written where I should have had something like this.

2 comments

I was confused by this. It is:

> cat = ''.join

Thanks, my bad!
If a mathematician is someone who knows that

    0 = 0 + 0
then would a pythonista be someone who knows that

    ''==''+''

?