Informatics Practices
The reserved words used by Python interpreter to recognize the structure of a program are termed as …………… .
- Identifiers
- Tokens
- Literals
- Keywords
Related Questions
What will be the output of the following snippet?
x, y = 2, 6 x, y = y, x + 2 print(x, y)- 6 6
- 4 4
- 4 6
- 6 4
The extension for a Python file is given as:
- .pt
- .pwy
- .py or .pyw
- .yppy
Which of the following is syntactically correct text?
- "This is great!"
- 'she shouted 'HELLO' loudly'
- "Goodbye'
- "This "course" is good"
What can be the maximum possible length of an identifier?
- 31
- 63
- 79
- Can be of any length