Python Flashcards
how do you write a comment in Python?
with the hash symbol #
how are variables assigned in python?
with the = sign
can variable names begin with numbers?
no
what does the error syntax error mean?
syntax error means that there is something wrong with the way the program is written
what does the Name Error error mean?
when the Python interpreter sees a word it doesn’t recognise
what does Python do before performing division?
converts all integers into floating point numbers
what is exponentiation?
the process of raising a quantity to some assigned power (using superscript numbers - x to the power of y)
what notation is used for exponentiation?
**
what is string concatenation?
the process of adding strings together
what is the plus equals += operator for?
to add to the current value of a variable
what notation do you use for a multi-line string?
three quotation marks, either “”” or ‘’’
what function is used to allow users to assign a value to a variable?
the input ( ) variable
a boolean expression is a ____ that can either be ___ or ___
a boolean expression is a statement that can either be true or false
what operators do you use to create a boolean expression?
relational operators
relational operators ___ two items and return either ___ or ___ false
relational operators compare two items and return either True or False
what are relational operators also known as?
comparators
what is the notation for the not equals relational operator / comparator?
!=
what is the notation for boolean equals operator?
==
what type are True and False known as?
True and False are their own type of bool
are True and False the only bool types?
yes
what is a variable assigned a bool as a value called?
a boolean variable
give two ways to create a boolean variable
a) assign a bool True or False to a variable
b) set a variable equal to a boolean expression
boolean variables are the building blocks of ____ _____
boolean variables are the building blocks of conditional statements
what notation takes the place of ‘then’ in a conditional statement in english (if x then y)
then is written with a colon :
how can you build larger boolean expressions?
using boolean operators
give 3 boolean operators
and
or
not
what does the boolean operator ‘or’ do?
‘or’ combines two expressions into a larger expression that is True if either component is True
only ___ component needs to be True for an or statement to be true
only 1 component needs to be True for an or statement to be true
what does the boolean operator ‘not’ do?
it reverses the value of any boolean value
where does the not operator go in a boolean statement?
at the start
eg
not 1 + 1 == 2 (False)
not 7 < 0 (True)
else statements always appear in conjunction with __ statements
else statements always appear in conjunction with if statements
what does an elif statement do?
an elif statement checks another condition after the previous if statement conditions aren’t met
what is a list in python
a data structure
what notation does a list begin with
square brackets [ ]
what is a method?
a python functionality that can be used to create, manipulate, and delete data
what is the syntax for using a method with a list?
list_name.method()
what is the location of an element in a list called?
its index
python lists are __-indexed
python lists are zero-indexed
what does zero-indexed mean?
that python lists start at 0, not 1
how do you select the last element of a list?
with the index -1
how can you change a specific value in a list?
by reassigning a value using its specific index
how can you change a specific value in a list?
by reassigning a value using its specific index
what method can you use to remove items from a list?
with the .remove( ) method
what is a list that contains another list called?
a two-dimensional (2D) list
what two inputs does the .insert( ) method take?
the index you want to insert to
the element you want to insert and the specified index
what does the .pop( ) method do?
removes elements at a specific index
how do you remove the last element from a list using the .pop( ) method?
don’t input an input into the brackets ( )
what does the len( ) function do?
gives the number of elements in a list
do range objects need to be converted to lists in order to determine their length ( with len() )
no
what is it called when only a portion of a list is extracted?
slicing
how do you slice the first n elements of a list?
with the notation:
list_name[:n] - colon used to represent ‘the first of’ n
list_name[:3] would select list items with index 0 - 2 from list called list_name
how do you slice the last n elements from a list
with the notation:
list_name[-n:] - colon used to represent ‘the last of’ n, placed at end
list_name[-2:] would select the last two list items from the end of the list
how do you slice all but the last n elements of a list?
with the notation:
list_name[:-n] - colon used to represent ‘the last of’ n, placed at end
list_name[:-2] would slice all but the last two elements of a list
how do you sort a list of string in reverse alphabetical order
list_name.sort(reverse=True)
what would happen if you assign the result of the .sort( ) method to a variable?
it would return None - the sort method modifies the list directly and does not need to be assigned to a variable
how is the method sorted( ) different from the method .sort( )
- sorted() comes before a list (ie sorted(list_name) as opposed to list_name.sort)
- sorted( ) generates a new list instead of modifying the existing list
what is a python tuple?
tuples are used to store multiple items within a single variable
what is the difference between a python list and a python tuple?
a tuple is immutable
how you create a one element tuple?
store the one element inside brackets, and put a ‘trailing’ comma after it
ie
one_element_tuple = (4,)
what does the zip function do?
takes two or more lists as inputs and returns an object that contains the new list of pairs, threes, etc
what does the zip function return when printed?
a zip object, which contains the location of the new variable in the computer’s memory, which isn’t always useful
what do you do to convert the returned zip object of a zip function?
use the list() function with the name of the zip variable as the input for the list function
ie:
converted_list = list(names_and_heights)
what are the three stages of a loop
- initialisation
- repetition
- end
what are the two types of iteration in programming languages?
indefinite iteration and definite iteration
what is indefinite iteration
an iteration where the number of times the loop is executed depends on how many times a condition is met
what type of loop is a for loop?
a definite iteration
does the temporary variable in a for loop need to be defined beforehand?
no
what type of loop is a while loop?
an indefinite iteration
what does a while loop do?
a while loop performs a set of instructions as long as a given condition is true
how do you stop iteration inside a loop?
with the break statement at the end of the loop commands
how do you define a function?
with def def function_name():
what is the beginning of a function also known as?
the function header
what is it called when a function is executed?
calling a function
how do you call a function in Python?
typing out the function name followed by parentheses
function_name()
what tells a computer what is part of a function and what isn’t part of a function?
how much whitespace there is / indentation
what is execution flow?
the order in which code is executed from top to bottom
what do function parameters do?
allow the function to accept data as an input value
how do you write a function that takes more than one parameter
separate the parameters with commas
what are the 3 types of arguments in python?
positional arguments, keyword arguments, default arguments
what is a positional argument
arguments that can be called by their position in the function definition
what is a keyword argument
arguments that can be called by their name
what is a default argument?
arguments that are given default values
how do you provide a default value to an argument?
by using the assignment operator = in the function declaration
how can you return several values from a function?
by separating the values with commas
what can a string be thought of as?
a list of characters
what does len do to strings?
returns the number of characters in a string
how can you iterate through strings?
with for and while loops
what is the syntax for string methods?
string_name.string_method(arguments)
what are the 3 string methods that can change the casing of a string?
.lower()
.upper()
.title()
do string methods alter the original string?
no
what does the .split() method do to a string?
takes an argument and returns a list of substrings found between the given argument (known as the delimiter)
what is the default argument for the .split() method?
to split at spaces
what happens when you set the argument of .split() to the last character of a string?
it returns an empty string at the end of the returned list
what is a python module?
a collection of python declarations intended to be used as a tool
what is a python module?
a collection of python declarations intended to be used as a tool
what are modules also called?
libraries or packages
what is a package actually?
a directory that holds a collection of modules
what does a namespace do?
isolates the functions, classes, and variables defined in the module from the code in the file doing the importing
how do you alias a module?
with the as keyword
what is pollution?
pollution occurs when the same name could apply to two or more things
what is a dictionary?
a set of key: value pairs
what character do dictionaries begin and end with?
curly brackets { }
how are key and value pairs separated in a dictionary?
by a comma
what type can dictionary keys be?
any type
can you use lists or dictionaries as values in dictionaries?
no
what syntax do you use to add an item to a dictionary?
dictionary_name[key] = value
how do you add multiple key:value pairs to a dictionary?
with the .update() method
what is the syntax for accessing values by a key?
dictionary_name[“key”]
what is the default argument of .open()?
r - opens files in read mode
what is the argument to open a file in append-mode
‘a’
what does the with keyword invoke when opening files?
it invokes context manager for the file you’re calling open on
What does JSON stand for?
JavaScript Object Notation
what arguments does the json.dump() method take?
data object, file object you want to save
what is a class?
a template for a data type - describes the kind of information that class will hold and how a programmer will interact with that data
what is the recommended style for classes?
Capitalised name
eg:
Class
what does instantiated mean?
an instance must be created in order for it to exist
how do you instantiate a class?
by calling it like a function, set to a variable with brackets
variable = Class()
what is a class instance also known as?
an object
The pattern of defining classes and creating objects to represent the responsibilities of a program is known as:
Object Oriented Programming / OOP
instantiation takes a class and turns it into an ___
object
what is a class variable?
a variable that’s the same for every instance of a class?
when would you use a class variable?
when you want the same data to be available to every instance of a class
what is always the first argument in a method (class)
the object that is calling the method
what is the convention for naming the first argument of a method?
call it self
how many arguments do methods always have?
at least one
what is the difference between functions and class methods?
class methods are indented within the class
when you call a method it automatically passes the ___ calling the method as the ___ ____
object , first argument
what are python methods within a class that have special behaviour called?
magic methods or dunder methods
methods that are used to prepare an object being instantiated are called ___
constructors
an object is an ___ of a class
instance
a class is a ____ for a data type
schematic
The data held by an object is referred to as an ___ ____
instance variable
are instance variables shared between all instances of a class?
no
what are instance variables?
variables that are specific to the object they are attached to
instance variables and class variables are both considered ___ of an object
attributes
what happens if you try to access an attribute that is neither a class variable not an instance variable?
AttributeError
what can you use to find out if an object has an attribute or not?
the hasattr() function
do dictionaries and integers have count attributes?
no
do strings and lists have count attributes?
yes
what is the difference between a list and a set
items can only appear one in a set
is a set ordered or unordered?
unordered
what does unordered mean
items in a set etc do not have indexes for their location