Review Note
Last Update: 07/10/2024 01:20 PM
Current Deck: Python fundamentals
PublishedCurrently Published Content
Code
Output
Explanation
Context
Current Tags:
Pending Suggestions
Field Change Suggestions:
Code
Commit #332267text = "a b c d"
words = text.split(None, 2)
print(words)
|
Output
Commit #332267
['a', 'b', 'c d']
Output
Commit #332268
['a', 'b', 'c d']