Python Flashcards
What is <
Less than
What is <=
Less than or equal to
What is >
Greater than
What is >=
Greater than it equal to
What is ==
Equal to
What is !=
Not equal to
What is and
As well as
What is or
This or that
How would you write a line of code for a integer variable
Number = int(input(“”))
What do you need at the end of your ‘if’, ‘Elif’ and ‘else’ statement before your print command
A colon :
Which brackets do lists go into
[box brackets]
What number does a list assign to the first in the list
0
What does
list.append(item)
Do
Add an item to the end of the list
What does
list.insert(index, item)
Do
Insert an item at a given position
What does
list.pop(index)
Do
Removes the item at the given position in the list, and return it. If not index specified, remove and return the last item in the list
What does
list.remove(item)
Do
Remove the first item from the list with a particular value. Raises a ValueError if there is no such item
What does
list.index(item)
Do
Search for the first occurrence of an item in the list and return its (zero-based) index. Raises a ValueError is there is no such item
What does
list.count(item)
Do
Return the number of times an item appears in the list
What does
list.reverse()
Do
Reverse the items of the list
what does
list.sort()
Do
Sort the items if the list
What does
list.sort(reverse = True)
Do
Use the reverse = True argument to sort in descending order
When working with lists do the things in the brackets have speech marks?
Yes
What is a list
A list is a kind of data structure, an organized collection of data
What is the number given to the first value in a list
0
When printing about lists what do you need to refer to
the name of the list
what is len
A function that can show us the length of different data types
how do you print len
print(len(name of list))
what is necessary when printing a random number
that the ‘import random’ line goes at the beginning of the program to allow the function to work
what does
random.randint(!,£)
mean
it gets the program to print any number between the two values
what does
random.uniform(!,£)
mean
it gets the program to print any number but with a decimal between the two values
what does
random.randrange(!,£,$)
mean
it gets the program to print a random number between the two values, but it has to be a multiple of $
what does
random.choice([’%’],[‘&’])
mean
it gets the program to choose between the two values
when printing a 2D list what setup do you need
variable = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
what code do you use to ask the user to enter the new figure (in the first column) into a 2D list
north = int(input(“Enter north figure: “))
what code do you use to ask the user to enter the new figure (in the last column) into a 2D list
south = int(input(“Enter south figure: “))
Why do we use variables
to keep track of counts and sums
why do we use iteration (for statements)
to iterate over strings of characters
write the base code for repetition of an action 5 times
for variable in 5: