Ask Your Question
0

What is the procedure to store two distinct variables that have the same value in Python?

asked 2022-12-18 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-05-05 04:00:00 +0000

lakamha gravatar image

In Python, variables are simply names for values. Therefore, two distinct variables cannot have the same value, as they would refer to the same object.

However, if you want to create two separate objects with the same value, you can use the following code:

a = 10
b = 10

Here, the variables a and b are separate objects that both have the value of 10.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-12-18 11:00:00 +0000

Seen: 8 times

Last updated: May 05 '22