Lecture 1 Flashcards
Controlling exit loops, lists and their methods
what does the break keyword do?
Exits the loop
how do you make an infinite loop?
while True:
what is a list? (3)
1 sequence data type
2 enclosed in [], data separated by commas
3 can contain data of many different types.
how do you access a list item within a list? (syntax)
listname[index of inner list[index of inner list item]]
what is the syntax for using the range object to create a list with numbers 1-10?
a=list(range(1, 11))
how do you create a list using list comprehensioN? (ex: squares of first 3 numbers)
squared_numbers = [x**2 for x in range(1, 4)]
what does append method do and what is syntax?
listname.append(x)
adds a single element x to the end of a list
what does the extend method do and what is the syntax?
listname.extend(x)
merges another list x to the end of the list
what is the insert method and what is the syntax?
listname.insert(index, x)
inserts element x at position index
what is the remove list method and what is the syntax?
listname.remove(value)
removes the first occurrence of element x from listname.
what is the pop method and what is the syntax?
listname.pop(index)
removes the LAST element of a list. if an argument is passed, that index item is removed.
what is the index method and what is the syntax?
listname.index(x)
searches for a given element from the start of the list and returns the position of the first occurrence. Throws error if not found.
what is the count method/syntax?
listname.count(x)
Counts the number of occurrences of an element x in a list listname.
sort method + syntax? (+3 things to remember)
listname.sort(reverse=True/False, key=function to specify sorting criteria by returning it)
**you have to use the keywords by name in the argument eg key=a
**you don’t need the () when naming the function in this syntax
*** does not work when sublists are involved
reverse method + syntax?
listname.reverse()
reverses the list
swapcase method + syntax
returns a string with all the cases changed.
stringname.swapcase()
what is a way to reverse a list without the reverse method?
listname[::-1]
len method + syntax
returns number of elements present in a list
syntax:
x=len(listname)
max/min method + syntax
return max/min value in a series
min(listname)
max(listname)
what is the definition of scope, and wht is the scope of a variable created iwthin function a?
scope=where our variables can be accessed!
the scope is only within function a.
what is a global vs local variable?
local = defined within the function
global = defined outside all the fuctions in the general code
how do you use a global variable wtihin a function?
global variablename allows you to pull a variable from outside the function and make it usable within the function
how would you replace values in a list?
a=[list]
i=a.index[value to replace]
a[i]=new value
how would you swap values in a list?
a = 2
b = 4
a,b = b,a
print(a,b)
what is a nonlocal variable and what are its limitations?
The nonlocal keyword is used in nested functions to reference a variable in the parent function.
won’t work on local or global variables and therefore must be used to reference variables in another scope except the global and local one.