CBSE Class 11 Computer Science Question 82 of 173

Data Handling — Question 11

Back to all questions
11
Question

Question 11

What is an atom in Python? What is an expression?

Answer

In Python, an atom is something that has a value. Identifiers, literals, strings, lists, tuples, sets, dictionaries, etc. are all atoms. An expression in Python, is any valid combination of operators and atoms. It is composed of one or more operations.

Answer