CBSE Class 12 Computer Science
Question 47 of 105
Python Revision Tour — Question 1
Back to all questionsThe smallest individual unit in a program is known as a Token. Python has following tokens:
- Keywords — Examples are import, for, in, while, etc.
- Identifiers — Examples are MyFile, _DS, DATE_9_7_77, etc.
- Literals — Examples are "abc", 5, 28.5, etc.
- Operators — Examples are +, -, >, or, etc.
- Punctuators — ' " # () etc.