How to find the path of the file in python
How to find the path of the file in python?
Do you want to print path of the file , you are working in. Here is the simple code example
__file__
It will print the complete path of the file.
print(__file__)