Lecture 3 Flashcards
dictionaries - defining, creating, accessing, methods for modification + copying of dictionaries
define dictionary
A data structure that consists of key-value pairs.
We use the keys to describe our data and the values to represent the data.
Keys are usually numbers or strings; values can be any data type
strip method syntax+ function
stringname.strip(characters to remove)
removing characters from the beginning or end of a string for characters supplied as arguments
OR
if no argument passed, will remove only leading and trailing spaces in a string
how can you add a key-value pair to a dictionary?
- define dictionary d={}
- d[“key1”] = “value1”
how can you initialize a dictionary using typecasting?
d = dict()
how do you combine 2 lists into a dictionary using iteration and one variable?
- define both lists
- define range + variable
- key-value assignment formatting: d[l1[i]] = l2[i] NOTE brackets around key, none around value. if you add brackets around the value it will print with brackets!*
how do you use a range loop to print ONLY the values in a dictionary?
dictionaryname={}
for i in dictionaryname.values():
print(i)
how do you use a loop to print ONLY the keys in a dictionary?
dictionaryname={}
for i in dictionaryname.keys():
print(i)
how do you use a loop to print the KEY-VALUE PAIRS in a dictionary?
dictionaryname={}
for i in dictionaryname.items():
print(i)
how do you print a LIST of TUPLES containing the key-value pairs in a dictionary?
print(list(dictionaryname.items()))
NOTE: you must typecast to a list or it will auto preface with “dict_items”. will still print a list of tuples
mutability and ordered/unordered? [ ]
[] - mutable and ordered
mutability and ordered/unordered? { }
{} - unordered, mutable, key-value pairs
mutability and ordered/unordered? “ “
”” - ordered, immutable
mutability and ordered/unordered? ( )
() - ordered, immutable
how do you access the values in a dictionary?
using the corresponding keys
update method function and syntax
appends dictionary 2 to the end of dictionary 1. can also pass another iterable object (usually of tuples containing key-value pairs)
dict1.update(dict2)
fromkeys method function and syntax
fromkeys creates a dictionary from the given sequence of keys and one value argument
dict.fromkeys(key list, value)
how do you use a range loop to create a dictionary using indexing?
names = [“john”, “ala”, “ilia”, “sudan”, “mercy”] #define list of keys
marks = [100, 200, 150, 80, 300] #define list of values
dictionary: d = {} #define dictionary
for i in range([# of key-value pairs-1]):
d[names[i]] = marks[i]
how do you use a range loop to create a list of lists where the pairs are assigned in order?
l1=[x num of elements]
l2=[x num of elements]
l3=[]
for i in range len(l1):
l3.append(l1[i], l2[i])
how do you use a range loop to create a dictionary using 2 defined variables in the range statement?
dict1={}
for (i,j) in l:
dict1[i] = j
how do you remove a key-value pair from a dictionary?
dictionaryname.pop(keyname)
how do you rename a key in a dictionary?
d[‘newkey’] = d.pop(“oldkey”)
how do you use a dictionary to count the number of occurrences of an element?
l=”Hello world”
x=0
d=dict.fromkeys(l, x) #create a dictionary using fromkeys and initialize every occurrence to 0. no duplicate keys by default
for i in l: #loop across sequence
d[i] = d[i]+1 #add 1 to the key-value pair for every occurrence of the sequence
define set. ordered or unordered? mutable/immutable?
a collection of unique data, meaning that elements within a set cannot be duplicated.
UNORDERED and MUTABLE
add method syntax + function
used to add an element to a set.
setname.add(element)
remove/discard methods syntax + function
remove() will raise an error if the specified item does not exist, and discard() will not.
copy method syntax + function
returns a copy of the original set. As the copied list is shallow, any changes made to the new list will not be reflected in the original list.
setname.copy()
clear method syntax + function
Removes all elements from the set
setname.clear()
intersection method syntax + function
Finding the values present in both the sets
set1.intersection(set2)
difference update method + function
Given two Python sets, update the first set with items that exist only in the first set and not in the second set.
s1.differenceupdate(s2)
you can also pass a full set through s2:
s2.difference_update({7,17})
symmetric difference update syntax and function
symmetric_difference_update returns a new set containing only the elements that are NOT common to both sets. like the non-overlapping parts of a venn diagram.
A.symmetric_difference_update(B)