Test your Python knowledge Put your Python skills to the test with this quiz. Answer these 12 questions and see how well you know the language. rihanna80 published on December 08, 2023 Stacked 1/12 What is Python? A snake A programming language A type of coffee A superhero 2/12 Which statement is used to define a function in Python? def for if while 3/12 What does the 'print' function do in Python? Allows user input Prints output to the console Performs mathematical calculations Loops through a list 4/12 Which symbol is used for single-line comments in Python? // # /* */ -- 5/12 Which data type is mutable in Python? String Tuple List Dictionary 6/12 What is the output of the following code snippet?print(3 + '4') 7 34 12 Error 7/12 Which statement is used to exit a loop in Python? continue exit return break 8/12 What is the output of the following code snippet?print(range(5)) 0 1 2 3 4 [0, 1, 2, 3, 4] [1, 2, 3, 4, 5] Error 9/12 Which method is used to remove an item from a list in Python? remove() pop() delete() clear() 10/12 What does the 'import' keyword do in Python? Exports a module Imports a module Prints a message Throws an exception 11/12 Which operator is used for exponentiation in Python? ** ^^ => // 12/12 What is the output of the following code snippet?print(len('Python')) Pyt Python 6 Error