Sep 22, 2021
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)