which of the following is not considered as a valid identifier in python
Answers
Answered by
26
Answer:
Identifiers can be combination of uppercase and lowercase letters, digits or an underscore(_). So myVariable, variable_1, variable_for_print all are valid python identifiers. An Identifier can not start with digit. So while variable1 is valid, 1variable is not valid.
Explanation:
pls mark as brainlist
Similar questions