Computer Science, asked by shivk50409, 5 months ago

What is Variable in Python? What are the rules to write the variable names?​

Answers

Answered by ss0228896
1

Answer:

Rules for creating variables in Python:

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 _)

Similar questions