Python Get file path

Source: Internet
Author: User

Import os    path1 = os.path.dirname (__file__)   print (path1) # Gets the absolute path of the currently running script     path2 = os.path.dirname (Os.path.dirname (__file__))  #   print (path2) #获取当前运行脚本的绝对路径 (remove the last path)     path3 = os.path.dirname ( Os.path.dirname (Os.path.dirname (__file__)))   print (PATH3) #获取当前运行脚本的绝对路径 (remove the last 2 paths)      path4 = os.path.dirname (Os.path.dirname (Os.path.dirname (Os.path.dirname (__file__)))    print (PATH4) #获取当前运行脚本的绝对路径 (remove the last 3 paths)     path5 = os.path.dirname ( Os.path.dirname (Os.path.dirname (Os.path.dirname (Os.path.dirname (__file__))))   print (PATH5) # Gets the absolute path of the currently running script (minus the last 4 paths)     path6 = os.__file__                    #获取os所在的目录   print ( PATH6)   project = os.path.abspath (__file__) Projectpath = os.path.dirname (project) print (project) print (ProjectPath)


Python Get file path

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.