Python 3 Flashcards
How to comment in Python?
#
How to print in Python?
print(text here)
Float number
Number with a decimal
How to do exponents?
**
Example: For 62, you would write 6**2
How to make a multiline string?
””” or ‘’’
How to assign a variable to user input?
input(text here)
Boolean operators in Python
and, or, not
Else if statement
elif
Syntax Error
Error caused by not following the proper syntax of the language
Name Error
Error caused when an unknown variable is used
Type Error
Error caused when you do an operation on an incorrect type
how to concatanate Strings with ints or doubles
use a comma instead of a plus sign
How to create a list
variable = [stuff here, separated by commas]
True or False: Lists can contain any data type
True
How to add something to the end of a list?
list.append(“”)
list concatination
use the + symbol and store it in a new list
How to access the last element of a list
use -1 (-2 would access second to last, etc.)