Which one of the following is NOT a keyword in Python?
a. if
b. break
c. python
d. else
Answers
Answered by
4
Answer:
If this is your answer
Explanation:
Please mark as brainleast
Answered by
1
The keyword that is NOT in Python is python.
- Keywords are predefined, reserved words used in Python programming that have special meanings to the compiler.
- Python keywords are special reserved words that have specific meanings and purposes and can't be used for anything but those specific purposes.
- These keywords are always available—you'll never have to import them into your code. Python keywords are different from Python's built-in functions and types.
- The built-in functions and types are also always available, but they aren’t as restrictive as the keywords in their usage.
- 'if' is used to conditionally execute a block of code, based on whether a particular condition is true or false.
- 'else' is used to specify the code to be executed if the condition in an if statement is false.
- 'break' is used to break out of a loop early.
#SPJ3
Similar questions