Python學習筆記(一):sys和os modules

來源:互聯網
上載者:User

      Python的系統模組包括:sys, os, glob, socket, threading, _thread, queue, time, timeit, subprocess, multiprocessing, signal, select, shutil, tempfile等。其中大多數系統級介面集中在:sys和os兩個模組。

      sys模組包含:

  • 平台與版本的資訊,如sys.platform, sys.maxsize, sys.version
  • 模組搜尋路徑sys.path
  • 模組表sys.modules,這是一個包含python程式中import進來的模組的name:module資訊的字典
  • 異常資訊,如sys.exc_info()
  • 命令列參數sys.argv
  • 標準流,如sys.stdin, sys.stdout, sys.stderr
  • 程式退出調用sys.exit

      os模組包含

Tasks Tools
Shell variables os.environ
Running programs os.system, os.popen, os.execv, os.spawnv
Spawning processes os.fork, os.pipe, os.waitpid, os.kill
Descriptor files, locks os.open, os.read, os.write
File processing os.remove, os.rename, os.mkfifo, os.mkdir, os.rmdir
Administrative tools os.getcwd, os.chdir, os.chmod, os.getpid, os.listdir, os.access
Portability tools os.sep, os.pathsep, os.curdir, os.path.split, os.path.join
Pathname tools os.path.exists('path'), os.path.isdir('path'), os.path.getsize('path')

 

      在sys和os兩個模組中與Python程式運行相關的包括:

  • os.getcwd():擷取指令碼運行時的當前路徑
  • os.chdir():更改路徑
  • sys.path: 儲存程式中用到的模組的搜尋路徑
  • sys.argv:Python程式在命令列運行狀態下的參數,第一個參數永遠時Python指令碼的名稱
  • os.environ:儲存Shell變數的字典,內容按key-value的形式儲存。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.