How are arguments passed by value or by reference?

Hi, I need to know How are arguments passed by value or by reference

Python does neither use pass by value nor pass by reference. It passes arguments by object.

There are also extensive threads on this topic on Stack Overflow and elsewhere which are quite informative; it might be worth your time to search for them.