How are arguments passed by value in Python?

How are arguments passed by value in Python?

Hello Tim-khorev,

Pass by value: A copy of the actual object is passed. Changing the value of the copy of the object will not change the value of the original object.