Skip to content

Instantly share code, notes, and snippets.

@1c7
Last active December 20, 2015 08:49
Show Gist options
  • Save 1c7/6103364 to your computer and use it in GitHub Desktop.
Save 1c7/6103364 to your computer and use it in GitHub Desktop.
(Python) 输出当前目录下 index.html 文件的路径
import os
import sys
path = os.path.join(os.path.dirname(sys.argv[0]), 'index.html')
print path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment