Basic python Flashcards
True or False: Any strings of text need to have speech marks.
True
True or False: Variables need speech marks.
False - Variables do not need speech marks.
True or False: Each variable or string needs a comma to separate.
True
True or False: Don’t surround text you want to print in brackets.
False - Surround everything you want to print in brackets.
What does str mean?
String - words
What does int mean?
Integer
What does float mean?
Decimal number
What does the * symbol do?
Multiplication
What does the / symbol do?
Normal division
What does the // symbol do?
Division without a remainder or decimal
What does the % symbol do?
Modulus - gives the remainder of the division
What does the + symbol do?
Addition
What does the - symbol do?
Subtraction
What does the ** symbol do?
Exponent - raises the second number to a power
What does the == symbol mean?
Equal to
What does the != symbol mean?
Not equal to
What does the > symbol mean?
Greater than
What does the < symbol mean?
Less than