FIB Programming concept... Text data type: string FIB Programming concept... Data type for True and False: boolean FIB "Programming concept... Data type that stores numbers with fractional parts (e.g., 3.14 or 2.2):" float FIB Programming concept... Data type that stores only integers: int FIB Programming concept... Name for a place in memory to store values: variable FIB Programming concept... Also called reserved words - these are names that should not be used for variable names because they have special meaning to python: keyword FIB Commonly used functions... Function to write to the screen: print FIB Commonly used functions... Function to get input from the user: input FIB Commonly used functions... Function to convert to integer: int FIB Commonly used functions... Function to convert to string: str FIB Commonly used functions... Function to convert to floating point number: float FIB Operators... Operator for addition: + FIB Operators... Operator for multiplication: * FIB Operators... Operator for floating point division: / FIB Operators... Operator for integer division (rounded down): // FIB Operators... Operator for remainder: % FIB Operators... Operator for exponentiation: ** FIB Python syntax... Comment character: # FIB One line Python program... Give python code to ask the user for their name and save it into a variable named name: name = input('What is your name? ') FIB One line Python program... Give python code to convert 26.1 miles to km (use conversion of 1 mile = 1.6 km): km = 26.1 * 1.6 FIB One line Python program... Give python code to print a variable named myVar (assume the variable myVar already exists): print(myVar) FIB Python error... Copy/paste the following and fix the syntax error: print('Hello World!) print('Hello World!') FIB "Python error... Copy/paste the following and fix the logical error: print('3 + 5 =', '3' + '5')" "print('3 + 5 =', 3+5)" FIB Python error... Copy/paste the following and fix the syntax error: color = Input('Favorite color? ') color = input('Favorite color?')