1 os.chdir('home') 2 a = os.path.realpath(__file__) # 文件真實路徑 3 b = os.path.split(__file__) # 文件路徑同文件名分開,返回元組 4 c = os.getcwd() # 當前工做路徑 5 d = sys.path[0] # 當前執行路徑 6 print(a) 7 print(b) 8 print(type(b)) 9 print(c) 10 print(d)
如下是pycharm下執行結果spa