All problems
EasyStrings
Split a sentence into words
Split a sentence on whitespace and print the resulting list.
- #split
Sample input
"learn python with nettms"
Sample output
['learn', 'python', 'with', 'nettms']
split-words.py
Output
Press "Run code" to execute.
