what does print(" 2t}"format( 123456789) display as? What purpose does the Decimal module serve? What does print("5 ord5")) display? What does print(A-", ord( A")) display? With message-"Hello out there!". What is message[6:9]? with message-"Hello out there!". what is message[10:]? With message "Hello out there!. What is message-1]? What is the keyword used in a for statement to search a string? What is not a rule for naming Python variables? what does the % operator do in Python? What does the//operator do in Python? How are empty strings assigned in Python? What is 9*2//3? What is 43//4 What operator is a short-circuit operator? How is a dictionary defined? What is the keyword used to determine if a key is in a dictionary? How are the items in a dictionary deleted? In Python, what is used to structure code? Which of the following is the exponent operator? Which of the following is the modulus operator? What is the correct way of printing the "T" in the string "PYTHON"? If my_variable "food", what is the data type of my_variable What correctly imports the math library? What correctly imports the datetime library? What is flow control? Which of the following is true? In Python, what data type do comparisons generate? What is an expression after an if statement always followed by? What are functions? What is this equal to? min(343, 74, 334, 93) def value(a,b): return a:b]. What is: print(valuel"Notebook"5)? What will this return? (min(2,13,3,7) max(2,-34,4))-abs(-3) How would you call the square root from the math module? print(1//3) In Python, what is one function to output content to the display? What symbol can be used to comment out one line of code in Python? How would you cast the variable a that is equal to "2" to an integer 2? How would you cast the variable a that is equal to 2 to a string "2"? Which of the following is not a valid assignment operator? Which one of the following is a valid Python if statement? How would you add an alternate condition to an if statement