Back
A) break
B) make
C) if
D) Todo
E) concat
The correct answer to the question “Which of these words are reserved words in Python” is option (a) and option (c). As both “break” and “if” are reserved words or keywords in Python, and the rest of the words are not. Wish to get started with Python, and want to get trained and certified in it, to enhance your job opportunities? Enroll in a good Python certification course, from Intellipaat. Also, have a look at the latest YouTube video on Python Online Course and get a better understanding.
Both Option A and C are reserved words in python.
Break: It is used to exit a loop prematurely
If: Used for conditional statements
You can access full list of reserved words in Python from keyword module:
import keyword
print(keyword.kwlist)# Display all the keywords in Python
31k questions
32.8k answers
501 comments
693 users