__file__ 是 python 的内置变量它的值等于文件名本身
[root@localhost ~]$ cat test.py #!/usr/bin/env python print(__file__)
[root@localhost ~]$ python test.py test.py