

InterviewSolution
Saved Bookmarks
1. |
Which of the following is true for variable names in Python?(a) unlimited length(b) all private members must have leading and trailing underscores(c) underscore and ampersand are the only two special characters allowed(d) none of the mentioned |
Answer» Right choice is (a) unlimited length To explain I would say: Variable names can be of any length. |
|