C-16-Q033mediumsingle_mcq
The symbol used to store data in a variable in Python is:
The symbol used to store data in a variable in Python is:
- a
== - b
= - c
:=only - d
=>
ব্যাখ্যা
A single equals sign = is the assignment operator in Python, used to store a value in a variable. The double == is for comparison, not assignment.