"Python Programming Quiz: Test Your Knowledge with 15 Questions"
Python Quiz Python Quiz 1. What is the correct file extension for Python files? A) .pyt B) .py C) .pt D) .python 2. How do you write a comment in Python? A) /* Comment */ B) C) #! Comment D) # Comment 3. Which method can be used to return a string in upper case letters? A) upper() B) uppercase() C) toUpper() D) to_uppercase() 4. Which of these collections defines a list? A) { "apple", "banana", "cherry" } B) ( "apple", "banana", "cherry" ) C) [ "apple", "banana", "cherry" ] D) ...