What is the process of compilation and linking in python?

Hi, I am looking for process of compilation and linking in python

have you found something doing a bit of research yourself? have you found anything you don’t understand?

Python is an interpreted language so the compilation is done on the fly unlike C and Java.

as Python is a scripting language there is no compiling nor linking. The interpreter handles these for you. If you want to make your script into a separate program you have to bundle it all together, python.org would have that information.