Informatics Practices
Which of the following are not the fundamental building blocks of a Python program?
- Identifiers
- Constants
- Keywords
- Errors
Python Funda
2 Likes
Answer
Errors
Reason — The fundamental building blocks of a Python program include identifiers, constants, and keywords. Errors, on the other hand, are issues that arise during program execution due to mistakes in the code.
Answered By
3 Likes
Related Questions
Null literal in Python means "there's nothing here".
Python supports multiple assignments to multiple variables.
Identifier name cannot be composed of special characters other than …………… .
- #
- Hyphen (-)
- Underscore (_)
Python takes …………… indented spaces after the function declaration statement by default.
- 5
- 6
- 4
- 3