Python Quiz for Beginners. 0% 0 Oops! Time up! Python programming Python Basic Quiz This Quiz for beginners. You can enhance and check your knowledge in python after attending this quiz. Login Here. NameEmail 1 / 50 Category: Syntax & Errors print(10 / 0) a. infinity b. SyntaxError c. 0 d. ZeroDivisionError 2 / 50 Category: Syntax & Errors int("abc") a. 0 b. abc c. ValueError d. TypeError 3 / 50 Category: Syntax & Errors print(unknown) a. NameError b. unknown c. 0 d. SyntaxError 4 / 50 Category: Syntax & Errors a = [1,2,3] print(a[5]) a. KeyError b. None c. IndexError d. 3 5 / 50 Category: Syntax & Errors if 5 > 3 print("Yes") a. No Error b. Logical Error c. Syntax Error d. Indentation Error 6 / 50 Category: Syntax & Errors def fun(): print("Hi") a. Syntax Error b. No Error c. Indentation Error d. Name Error 7 / 50 Category: Syntax & Errors list = 10 print(list[0]) a. IndexError b. 0 c. TypeError d. 1 8 / 50 Category: Syntax & Errors print(x) a. NameError b. x is printed c. 0 d. SyntaxError 9 / 50 Category: Syntax & Errors print("Hello) a. Name Error b. No Error c. Syntax Error d. Value Error 10 / 50 Category: Syntax & Errors for i in range(5) print(i) a. No Error b. Syntax Error c. Type Error d. Name Error 11 / 50 Category: Fill in the Blanks Python was created by __________. a. Dennis Ritchie b. James Gosling c. Guido van Rossum d. Bjarne Stroustrup 12 / 50 Category: Fill in the Blanks Python is a __________ typed language. a. Dynamically b. Weakly c. Strongly d. Statically 13 / 50 Category: Fill in the Blanks Python is an __________ language. a. Interpreted b. Compiled c. Binary d. Assembled 14 / 50 Category: Fill in the Blanks Python is a __________ level programming language. a. Low b. High c. Machine d. Assembly 15 / 50 Category: Fill in the Blanks The output of print(type(10)) is __________. a. number b. int c. integer 16 / 50 Category: Fill in the Blanks The keyword used to define a function in Python is __________. a. fun b. def c. function d. define 17 / 50 Category: Fill in the Blanks __________ function returns the length of a list. a. count() b. len() c. length() d. size() 18 / 50 Category: Fill in the Blanks __________ is used to take input from the user in Python. a. input() b. read() c. scan() d. get() 19 / 50 Category: Fill in the Blanks __________ keyword is used to check a condition in Python. a. for b. if c. check d. while 20 / 50 Category: Fill in the Blanks The correct file extension for Python files is __________. a. .py b. .python c. .pt d. .pyt 21 / 50 Category: Fill in the Blanks The value of True in Python is __________. a. 1 b. True c. true d. 0 22 / 50 Category: Fill in the Blanks The multiplication operator in Python is __________. a. * b. % c. x d. X 23 / 50 Category: Fill in the Blanks The symbol used for comments in Python is __________. a. # b. <!-- --> c. // d. /**/ 24 / 50 Category: Fill in the Blanks __________ is used to exit a loop in Python. a. end b. exit c. break d. stop 25 / 50 Category: Fill in the Blanks Lists in Python are enclosed within __________ brackets. a. () b. [] c. {} 26 / 50 Category: Output Based Questions print(len("Python")) a. 5 b. 8 c. 7 d. 6 27 / 50 Category: Output Based Questions print(5 % 2) a. 2 b. Error c. 1 d. 0 28 / 50 Category: Output Based Questions print("Python"[0]) a. y b. P c. Error d. Python 29 / 50 Category: Output Based Questions print(10 > 5) a. True b. Error c. False d. 10 30 / 50 Category: Output Based Questions print(10 == 10) a. Error b. 10 c. True d. False 31 / 50 Category: Output Based Questions print(5 + 3) a. None b. Error c. 53 d. 8 32 / 50 Category: Output Based Questions x = 10 print(x) a. 0 b. x c. Error d. 10 33 / 50 Category: Output Based Questions x = 5 x += 3 print(x) a. Error b. 8 c. 5 d. 2 34 / 50 Category: Output Based Questions print(bool(0)) a. True b. Error c. 0 d. False 35 / 50 Category: Output Based Questions print(type(3.14)) a. float b. int c. decimal 36 / 50 Category: Output Based Questions a = [1,2,3] print(len(a)) a. Error b. 2 c. 3 d. 1 37 / 50 Category: Output Based Questions print(2 ** 3) a. 6 b. Error c. 9 d. 8 38 / 50 Category: Output Based Questions print(10 / 2) a. Error b. 5 c. 2 d. 5.0 39 / 50 Category: Output Based Questions print("Hello" + "World") a. Error b. Hello World c. Hello+World d. HelloWorld 40 / 50 Category: Output Based Questions print(type("10")) a. float b. string c. int 41 / 50 Category: True / False print() is used for input in Python. a. True b. False 42 / 50 Category: True / False Indentation is mandatory in Python. a. True b. False 43 / 50 Category: True / False = is a comparison operator in Python. a. False b. True 44 / 50 Category: True / False None represents absence of a value. a. False b. True 45 / 50 Category: True / False Python is case-sensitive. a. True b. False 46 / 50 Category: True / False Python supports multiple inheritance. a. False b. True 47 / 50 Category: True / False while loop executes at least once. a. True b. False 48 / 50 Category: True / False Python supports object-oriented programming. a. False b. True 49 / 50 Category: True / False Python code runs faster than C language. a. False b. True 50 / 50 Category: True / False Tuples are mutable data types. a. False b. True Your score isThe average score is 0% 0% Restart quiz Rate the Quiz. Thank You For Rating Us! Send feedback Share this: Share on Facebook (Opens in new window) Facebook Share on X (Opens in new window) X Like this: Table of Contents ToggleLike this:Related Like Loading… Related Share post Please Share This Share this content Opens in a new window Opens in a new window Opens in a new window Opens in a new window Read more articles Previous PostLearn Python: A Comprehensive Guide for Beginners Next PostPython List Datatype Quiz Prajjwal Singh Tech Blogger || Web developer || Computer Networking Enthusiast || Microsoft SQL Database Management Expert || Software Debugger || Learned DOS OS Structure You Might Also Like Working with Anaconda Python August 27, 2022 Python Dictionaries Handwritten Notes | Dictionary Methods & Examples May 25, 2026 Python–: Important questions September 11, 2022 Leave a ReplyCancel reply