name = 'Alice Johnson'
# adjust the following line of code
first, last = name
print(first) # expected: Alice
print(last) # expected: Johnson
Python
Setting up Python environment...
Output
name = 'Alice Johnson'
# adjust the following line of code
first, last = name
print(first) # expected: Alice
print(last) # expected: Johnson
Setting up Python environment...