CSE 1300 module 5
Creating a List - ANS-We can do this by enclosing a comma-separated sequence of items within
square brackets. example: my_list = ["apple","banana",35,40.2, True]
Accessing a List - ANS-There are two main ways to do this: indexing and slicing
Adding/removing from a List - ANS-append(x), extend(iterable), remove(x),
list method: append(x) - ANS-Adds the element x to the end of the list
list method: extend(iterable) - ANS-Adds the elements of the iterable to the end of the list.
list method: insert(i, x) - ANS-Inserts the element x at the index i.
list method: remove(x) - ANS-Removes the first occurrence of the element x from the list.
list method: pop([i]) - ANS-Removes and returns the element at index i. If no index is specified, it
removes and returns the last element.
Creating a tuple: - ANS-created using parentheses () and can contain any number of elements,
separated by commas. example: my_tuple = (1, "apple", 3.14, True)
Accessing a Tuple - ANS-can be done through Indexing, Slicing and negative indexing.
tuple method: count ( ) - ANS-The ___ method returns the number of times a specified element
appears in a tuple
tuple method: Index() - ANS-The ___ method returns the index of the first occurrence of a
specified element in a tuple
Creating a set - ANS-There are two ways to create a _____ in Python: using curly braces {}, or
using the set() constructor.
curly brackets:
fruit_set = {'apple', 'banana', 'cherry'}
print(fruit_set) #Output('apple', 'banana', 'cherry')
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller Hkane. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for £6.37. You're not tied to anything after your purchase.