Robotics & Artificial Intelligence
Write short notes on Assignments with reference to Python language.
Getting Started
3 Likes
Answer
Assigning means to store values in variables using a token '=' which acts as an assignment operator. The operand to the left of '=' operator is the variable name and the operand to the right of '=' operator is the value to be stored. For example, n = 15 means that the numeric constant 15 is stored in the variable n.
Answered By
2 Likes