035 絕對路勁和相對路徑

絕對路徑

  • Windows系統絕對路徑從盤符(C:、D:)開始寫一個完整的路徑。python

    path = r'D:\上海Python11期視頻\python11期視頻\day 09\test.py'  # 鼠標右鍵點擊文件,
    copy pathf = open(path, 'w')  # r-->read 只讀 ; w-->只寫,清空當前文件後寫入,自動建立文件
    f.write('nick handsome')
    f.close()

相對路徑

  • 相對於當前執行文件坐在的文件夾開始找code

    path = r'test.py'  # 鼠標右鍵點擊文件,copy path
    
    f = open(path, 'r')  # r-->read 只讀 ; w-->只寫,清空當前文件後寫入,自動建立文件
    
    print(f.read())
相關文章
相關標籤/搜索