1
Which of the following can be used as valid variable identifier(s) in
Python?
New.file, _amount For, 2numbers, Symbols
Answers
Answered by
3
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
Similar questions