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
Python concept used to construct lists in a concise manner. For example, to produce a list where the items in `my_list= [1,2,3,4]` are doubled, the list comprehension would be: `new_list = [x*2 for x in my_list]`