Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
fruits = ['apple', 'banana', 'cherry'] points = (1, 4, 5, 9) fruits.extend(points) print(fruits)
['apple', 'banana', 'cherry', 1, 4, 5, 9]