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 asprint('a'.split(' '))# butprint(''.split())# isn't the same asprint(''.split(' '))
Explanation
- It might appear at first that the default