[Py]python __file__ and Argv[0]

Source: Internet
Author: User

http://andylin02.iteye.com/blog/933237

import os,sysdirname, filename = os.path.split(os.path.abspath(sys.argv[0]))print "running from", dirnameprint "file is", filename
__file__ 是用来获得模块所在的路径的,这可能得到的是一个相对路径,比如在脚本test.py中写入:#!/usr/bin/env pythonprint __file__

Gets the full path of the current file
Get full path path + file name
···

!/usr/bin/env Pythoncoding=utf-8

Import OS

Print (file)

e:/learn/djangotest/mysite/demo/01.py

Import Sys

Print (Sys.argv[0])

e:/learn/djangotest/mysite/demo/01.py

Print (Os.path.abspath (sys.argv[0))

E:\learn\djangotest\mysite\demo\01.py

dirname, filename = Os.path.split (Os.path.abspath (sys.argv[0]))
Print (dirname)

E:\learn\djangotest\mysite\demo

···

[Py]python __file__ and Argv[0]

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.