Computer Science, asked by myself4093, 6 months ago

list the general rules while naming and using variables in python​

Answers

Answered by Anonymous
15

Answer:

Rules

Variables names must start with a letter or an underscore, such as: _underscore. underscore_

The remainder of your variable name may consist of letters, numbers and underscores. password1. n00b. underscores.

Names are case sensitive. casesensitive, CASESENSITIVE, and Case_Sensitive are each a different variable.

Explanation:

Follow Me..

Answered by Anonymous
3

Answer:

Rules for Python variables:

A variable name must start with a letter or the underscore character.

A variable name cannot start with a number.

A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )

Variable names are case-sensitive (age, Age and AGE are three different variables)

Similar questions