...

/

Splitsies

Splitsies

If you think splitting a pizza is hard, check this out:

Python 3.5
print('a'.split())
# is same as
print('a'.split(' '))
# but
print(''.split())
# isn't the same as
print(''.split(' '))

Explanation

  • It might appear at first that the default separato
...
...