KnowledgeBoat Logo
|

Informatics Practices

Which of the following are not the fundamental building blocks of a Python program?

  1. Identifiers
  2. Constants
  3. Keywords
  4. Errors

Python Funda

3 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

2 Likes


Related Questions