python路徑描述方式

Songruibb發表於2018-04-19

python在描述路徑時可以有多種方式,現列舉常見的三種

方式一:轉義的方式

'd:\\a.txt'

方式二:顯式宣告字串不用轉義

'd:r\a.txt'

方式三:使用Linux的路徑/

'd:/a.txt'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11


相關文章