Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
Add a particular item to the end of a list. ``` my_list = [ 2, 3, 4, 5] my_list.append(6) # the list will now be [2, 3, 4, 5, 6] ```