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: Fill in the Blanks The keyword used to define a function in Python is __________. a. def b. function c. define d. fun 2 / 50 Category: Fill in the Blanks __________ function returns the length of a list. a. len() b. size() c. count() d. length() 3 / 50 Category: Fill in the Blanks __________ keyword is used to check a condition in Python. a. check b. for c. if d. while 4 / 50 Category: Fill in the Blanks Python is a __________ level programming language. a. Assembly b. High c. Low d. Machine 5 / 50 Category: Fill in the Blanks Python is an __________ language. a. Assembled b. Binary c. Compiled d. Interpreted 6 / 50 Category: Fill in the Blanks __________ is used to take input from the user in Python. a. get() b. read() c. input() d. scan() 7 / 50 Category: Fill in the Blanks The value of True in Python is __________. a. True b. true c. 0 d. 1 8 / 50 Category: Fill in the Blanks Python was created by __________. a. Dennis Ritchie b. Bjarne Stroustrup c. James Gosling d. Guido van Rossum 9 / 50 Category: Fill in the Blanks The multiplication operator in Python is __________. a. * b. % c. X d. x 10 / 50 Category: Fill in the Blanks __________ is used to exit a loop in Python. a. stop b. break c. exit d. end 11 / 50 Category: Fill in the Blanks The correct file extension for Python files is __________. a. .pt b. .pyt c. .py d. .python 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 Lists in Python are enclosed within __________ brackets. a. () b. {} c. [] 14 / 50 Category: Fill in the Blanks The output of print(type(10)) is __________. a. number b. integer c. int 15 / 50 Category: Fill in the Blanks The symbol used for comments in Python is __________. a. <!-- --> b. // c. # d. /**/ 16 / 50 Category: Syntax & Errors list = 10 print(list[0]) a. TypeError b. 0 c. 1 d. IndexError 17 / 50 Category: Syntax & Errors a = [1,2,3] print(a[5]) a. KeyError b. 3 c. IndexError d. None 18 / 50 Category: Syntax & Errors if 5 > 3 print("Yes") a. Syntax Error b. Indentation Error c. No Error d. Logical Error 19 / 50 Category: Syntax & Errors print("Hello) a. No Error b. Name Error c. Syntax Error d. Value Error 20 / 50 Category: Syntax & Errors int("abc") a. abc b. 0 c. TypeError d. ValueError 21 / 50 Category: Syntax & Errors for i in range(5) print(i) a. Type Error b. No Error c. Syntax Error d. Name Error 22 / 50 Category: Syntax & Errors print(unknown) a. NameError b. 0 c. unknown d. SyntaxError 23 / 50 Category: Syntax & Errors print(x) a. SyntaxError b. 0 c. x is printed d. NameError 24 / 50 Category: Syntax & Errors def fun(): print("Hi") a. Syntax Error b. No Error c. Indentation Error d. Name Error 25 / 50 Category: Syntax & Errors print(10 / 0) a. 0 b. infinity c. SyntaxError d. ZeroDivisionError 26 / 50 Category: True / False print() is used for input in Python. a. True b. False 27 / 50 Category: True / False = is a comparison operator in Python. a. False b. True 28 / 50 Category: True / False Indentation is mandatory in Python. a. True b. False 29 / 50 Category: True / False while loop executes at least once. a. False b. True 30 / 50 Category: True / False None represents absence of a value. a. False b. True 31 / 50 Category: True / False Python supports object-oriented programming. a. True b. False 32 / 50 Category: True / False Python supports multiple inheritance. a. True b. False 33 / 50 Category: True / False Python is case-sensitive. a. False b. True 34 / 50 Category: True / False Python code runs faster than C language. a. True b. False 35 / 50 Category: True / False Tuples are mutable data types. a. False b. True 36 / 50 Category: Output Based Questions print(10 > 5) a. False b. True c. Error d. 10 37 / 50 Category: Output Based Questions x = 5 x += 3 print(x) a. 8 b. 2 c. Error d. 5 38 / 50 Category: Output Based Questions print(type("10")) a. float b. int c. string 39 / 50 Category: Output Based Questions print(bool(0)) a. Error b. 0 c. False d. True 40 / 50 Category: Output Based Questions print(len("Python")) a. 8 b. 7 c. 6 d. 5 41 / 50 Category: Output Based Questions print("Python"[0]) a. P b. Error c. y d. Python 42 / 50 Category: Output Based Questions print(2 ** 3) a. 9 b. 6 c. 8 d. Error 43 / 50 Category: Output Based Questions x = 10 print(x) a. Error b. 10 c. x d. 0 44 / 50 Category: Output Based Questions print(5 % 2) a. 1 b. 2 c. Error d. 0 45 / 50 Category: Output Based Questions print(10 / 2) a. 2 b. 5 c. 5.0 d. Error 46 / 50 Category: Output Based Questions print(type(3.14)) a. float b. int c. decimal 47 / 50 Category: Output Based Questions print("Hello" + "World") a. Error b. HelloWorld c. Hello World d. Hello+World 48 / 50 Category: Output Based Questions print(5 + 3) a. None b. 53 c. Error d. 8 49 / 50 Category: Output Based Questions a = [1,2,3] print(len(a)) a. 3 b. 1 c. 2 d. Error 50 / 50 Category: Output Based Questions print(10 == 10) a. True b. 10 c. False d. Error 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 Python Operators & Conditional Statements Handwritten Notes | Arithmetic, Logical & Comparison Operators | If Else Handwritten Notes May 23, 2026 Python Functions Handwritten Notes | User Defined Functions Guide May 25, 2026 Looping Construct In Python March 20, 2024 Leave a ReplyCancel reply
Python Operators & Conditional Statements Handwritten Notes | Arithmetic, Logical & Comparison Operators | If Else Handwritten Notes May 23, 2026