--

This is wrong, try:

# ======================

number = 7

print(id(number))

def pass_by_value(num):

print("When the function starts, num is", num)

print(id(num))

num = 1

print(id(num))

print("When the function ends, num is", num)

pass_by_value(number)

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Responses (2)

Write a response