data = [10, 20, 30, 40, 50]
# adjust the following line of code
a, b, *c = data
print(b + c == 90) # expected: True
Python
Setting up Python environment...
Output
data = [10, 20, 30, 40, 50]
# adjust the following line of code
a, b, *c = data
print(b + c == 90) # expected: True
Setting up Python environment...