Computer Science, asked by Anonymous, 10 months ago

What are the tokens in python?? answer in detail​

Answers

Answered by Anonymous
4

token are constant used with Python parse trees . white space is only meaningful to separate tokens. the token constant are

name, number, string , newline, indent etc

Answered by Anonymous
4

Tokens are the smallest unit of the program. There are following tokens in Python:

  • Reserved words or Keywords
  • Identifiers
  • Literals
  • Operators

Hope it helps.. ✌


Anonymous: :(
Similar questions