Splitsies

We'll cover the following...

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

Press + to interact
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
...
...