Review Note

Last Update: 07/10/2024 01:20 PM

Current Deck: Python fundamentals

Published

Currently Published Content


Code
Output
Explanation
Context

Current Tags:

python_fundamentals

Pending Suggestions


Field Change Suggestions:
text = "a b c    d"
words = text.split(None, 2)
print(words)

['a', 'b', 'c d']
['a', 'b', 'c d']