Computer Science, asked by falak8425, 7 hours ago

Which is the right way to define integer variable in Python?​

Answers

Answered by rochanaratakonda
2

Explanation:

How to declare a variable in Python

The first character of the variable can be an alphabet or (_) underscore.

Special characters (@, #, %, ^, &, *) should not be used in variable name.

Variable names are case sensitive. For example - age and AGE are two different variables.

Reserve words cannot be declared as variables.

Similar questions