Elementary | Middle
Middle | High
AI
Use Cases
Teaching
Tools
Explore our languages
Start a new project
Open a blank sandbox in any language.
Company
Community
Explore
Click on one of our programs below to get started coding in the sandbox!
View All
Unpack some variables from a list. ``` my_list = [0, 1, 2] print my_list # prints [0, 1, 2] x, y, z = my_list print x + y + z # prints 3 ```