Exercise: String Split
Split the text variable using the appropriate separator to get a list containing four numbers.
text = 'one?two?three?four'
# complete the following line...
words =
print(words)
# expected: ['one', 'two', 'three', 'four']
Python
Setting up Python environment...
Output