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