Python 1 2 Flashcards
What does one row represent in a tabular dataset?
a single item/observation in your collection
What does one column represent in a tabular dataset?
a single piece of information
What shape does tabular data take?
a rectangle
What’s the difference between = and == in Python?
= assigns a value to a variable, == tests whether two items are the same
How do you write a multi-line string in Python?
””” wrap it in three quotes “””
How do you write a comment in Python?
#
What are the rules for Python variable names?
can use any upper/lowercase character, number, or _
What is the function to check what Python type something is?
type
How would you make a string with ‘my qb is Tom Brady’ using f strings if ‘Tom Brady’ was in a variable called name?
f’my qb is {name}’
(Python) What type of a variable is (1 == 2)?
bool
(Python) What is the value of (1 == 2)?
FALSE
(Python) What is the difference between variables and strings in terms of quotation marks?
strings always have quotation marks; variables never do
(Python) How would you refer to the first element in a list named my_list?
my_list[0]
(Python) How would you refer to the last element in a list named my_list?
my_list[-1]
(Python) How would you refer to the first two elements in a list named my_list?
my_list[0:2]
(Python) What is the name for the part in brackets in my_list[0:2]?
a slice
(Python) How many items does my_list[:n] return?
n
(Python) What is a list surrounded by?
square brackets
What is a Python dict?
a collection of key, value pairs
(Python) What is a dict surrounded by?
curly brackets
(Python) How would you access 1 in my_dict = {‘a’: 1, ‘b’: 2}?
my_dict[‘a’]
(Python) How would you change ‘a’ to 0 in my_dict = {‘a’: 1, ‘b’: 2}?
my_dict[‘a’] = 0
(Python) How would you add a new item ‘c’ = 3 in my_dict = {‘a’: 1, ‘b’: 2}?
my_dict[‘c’] = 3
What is a loop in Python?
a way to do something for every item in a collection
(Python) What does this code do? for x in my_roster_list: print(x)
prints the values of my_roster_list
(Python) What is the default behavior when looping over a dict?
to loop over the keys only
(Python) What do you have to your dict to loop over the key and value in a dict?
.items()
When want to modify one list to get another list you should be thinking what?
a list comprehension
(Python) What is the general form of a list comprehension?
[… for … in … if …]
(Python) How would you turn mylist = [‘a’, ‘b’, ‘c’] into [‘A’, ‘B’, ‘C’] using list comprehensions?
[x.upper() for x in mylist]
(Python) What would type([x*2 for x in [1, 2, 3]) return?
list
(Python) What is [x*2 for x in [1, 2, 3]] called?
list comprehension
(Python) How would you turn mydict = {‘a’: 1, ‘b’: 2} into {‘A’: 2, ‘B’: 4} using a dict comprehension?
{key.upper(): value*2 for key, value in mydict.items()}
(Python) How would you turn mydict = {‘a’: 1, ‘b’: 2} into a list [1, 2] using list comprehensions?
[x for _, x in mydict.items()]
What is the keyword to create a function in Python?
def
(Python) Take the code: def over_100_total_yds(rush_yds, rec_yards): return rush_yds + rec_yards > 100 What are the names of the function arguments?
rush_yds, rec_yards
(Python) Take the code: def over_100_total_yds(rush_yds, rec_yards): return rush_yds + rec_yards > 100 What is the function name?
over_100_total_yds
What is the function name? over_100_total_yds (Python) Take the code: def over_100_total_yds(rush_yds, rec_yards): return rush_yds + rec_yards > 100 What type does the function return?
bool