Multiple choice Which of the following is correct syntax for an input statement to store your name? name == input name = input("Enter your name: ") name == input("Enter your name: ") name = int(input("Enter your name: ")) Reveal answer Fill a bubble to check yourself B Correct answer Explanation In Python, the input function is used to capture user input, and the assignment operator (=) stores that value into a variable. Option B correctly uses the function with a prompt string.