Informatics Practices
What can be the maximum possible length of an identifier?
- 31
- 63
- 79
- Can be of any length
Python Funda
2 Likes
Answer
Can be of any length
Reason — In Python, identifiers can be of any length.
Answered By
3 Likes
Related Questions
The reserved words used by Python interpreter to recognize the structure of a program are termed as …………… .
- Identifiers
- Tokens
- Literals
- Keywords
Which of the following is syntactically correct text?
- "This is great!"
- 'she shouted 'HELLO' loudly'
- "Goodbye'
- "This "course" is good"
Which of the following operators is floor division?
+
/
//
>
Which of the following is an invalid statement?
- a=b=c=20
- a,b,c=10,20,30
- abc = 20 30 40
- abc=20