Splitsies
If you think splitting a pizza is hard, check this out:
Python 3.5
print('a'.split())# is same asprint('a'.split(' '))# butprint(''.split())# isn't the same asprint(''.split(' '))
Explanation
- It might appear at first that the default separato