Wednesday, July 6, 2022

[FIXED] How can I pass "number variable" in function as reference in python?

Issue

For better understanding here is a example code.

num = 0


def func(num):
    num += 1

func(num)
print(num)

This code prints 0 but I want 1(incremented by func()), how can I do that?

How can I do that? Is it possible?


Solution

Long story short, you can't just put number in function and expect it to be passed by reference.

In python...

  • (act like) pass by value : whole numbers, strings or tuples
  • (act like) pass by reference : python list

You should visit here for more info about "Pass(call) by Object Reference".

https://www.geeksforgeeks.org/is-python-call-by-reference-or-call-by-value/



Answered By - Eric Whale
Answer Checked By - Marilyn (PHPFixing Volunteer)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.