

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
8.2.3 A List Is Like A Mutable Tuple CodeHS Answers
Typology: Study Guides, Projects, Research
1 / 3
This page cannot be seen from the preview
Don't miss anything!
This program shows how indexing and slicing can be used with lists. “”” Creating an empty list: my_list = [] print my_list Creating a list with things in it: list_of_things = [“hi”, 3, 4.8] thing_zero = list_of_things[0] thing_one = list_of_things[1] thing_two = list_of_things[2] print thing_zero print thing_one print thing_two print list_of_things print len(list_of_things) Unlike with a tuple, you can change a particular element in a list! list_of_things[0] = 2 print list_of_things Get everything starting at thing 0 and going up to BUT NOT INCLUDING thing 2 print list_of_things[0:2] This gets things 1 and 2 print list_of_things[1:3] This gets everything from thing 1 to the end. print list_of_things[1:] This gets everything from the beginning up to but not including thing 2 print list_of_things[:2] This gets the last thing. print list_of_things[-1] This gets the last two things. print list_of_things[-2:]
This gets everything but the last thing. print list_of_things[:-1]
This program shows how indexing and slicing can be used with lists. """
my_list = [] print(my_list)
list_of_things = ["hi", 3, 4.8] thing_zero = list_of_things[0] thing_one = list_of_things[1] thing_two = list_of_things[2] print(thing_zero) print(thing_one) print(thing_two) print(list_of_things) print(len(list_of_things))
list_of_things[0] = 2 print(list_of_things)
print(list_of_things[0:2])
print(list_of_things[1:3])
print(list_of_things[1:])