What is the symbol for an integer?
int()
What is the symbol for a string?
str()
What is the symbol for a float?
float()
What is the symbol for a Boolean?
bool()
What is the function for the length of a string?
len()
What is the function for an output?
print()
What is the function for an input?
input()
What is the function to find the largest number in a set?
max()
What is the symbol for assignment?
=
What command is used to assign a set of values to a list?
listName = [value, value]
What is the command used to identify an item of a list by its position?
listName[index]
How is an if loop written in python?
if … :
….
elif… :
….
else:
….
How is a for loop written in python?
for i in range x:
…
How is a while loop written in python?
while … :
…
What is the symbol for divide?
/
What is the symbol for multiply?
*
What is the symbol for exponential?
**
What is the symbol for add?
+
What is the symbol for subtract?
-
What is the symbol for integer division / quotient?
//
What is the symbol for modulus?
%
What is the symbol for equal to?
==
What is the symbol for not equal to?
!=
What is the symbol for greater than?
>