CBSE BOARD XII, asked by sawanganjhu130012, 9 months ago

__________is the python Operator responsible for declaring variables

Answers

Answered by harshininathan14
3

Unlike other programming languages, Python has no command for declaring a variable. A variable is created the moment you first assign a value to it.

please mark as brainlist

Answered by brainlysme9
0

Assignment (=) operator is the python Operator responsible for declaring variables

In Python, to declare a variable:

1.Simply give the variable a name.

2.Give it the necessary value.

3.We don't need to describe the data type of the variable because it will be determined automatically based on the value assigned.

Similar questions