Saved Bookmarks
| 1. |
Write short notes on Tokens? |
|
Answer» Python breaks each logical line into a sequence of elementary lexical components known as Tokens. The normal token types are; 1. Identifiers 2. Keywords 3. Operators 4. Delimiters 5. Literals White space separation is necessary between tokens, identifiers or keywords. |
|