中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

通過代碼實例了解Python sys模塊

發布時間:2020-10-10 20:30:34 來源:腳本之家 閱讀:142 作者:冷冰若水 欄目:開發技術

sys-系統特定的參數和功能

該模塊提供對解釋器使用或維護的一些變量的訪問,以及與解釋器強烈交互的函數。它始終可用。

代碼如下

#!/usr/bin/python
# Filename: cat.py

import sys

def readfile(filename):
  '''Print a file to the standard output.'''
  f = file(filename)
  while True:
    line = f.readline()
    if len(line) == 0:
      break
    print line, # notice comma
  f.close()

# Script starts from here
if len(sys.argv) < 2:
  print 'No action specified.'
  sys.exit()

if sys.argv[1].startswith('--'):
  option = sys.argv[1][2:]
  # fetch sys.argv[1] but without the first two characters
  if option == 'version':
    print 'Version 1.2'
  elif option == 'help':
    print '''\
This program prints files to the standard output.
Any number of files can be specified.
Options include:
 --version : Prints the version number
 --help  : Display this help'''
  else:
    print 'Unknown option.'
  sys.exit()
else:
  for filename in sys.argv[1:]:
    readfile(filename)

這個程序用來模仿linux中的cat命令。

在python程序運行的時候,即不是在交互模式下,在sys.argv[]列表中總是至少有一個項目,它就是當前運行的程序的名稱,其他的命令行參數在這個項目之后。

另外,sys模塊中還有其他特別有用的項目,sys.stdin sys.stdout sys.stderr分別對應標準輸入、標準輸出、標準錯誤。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

穆棱市| 苏尼特右旗| 樟树市| 凌源市| 江源县| 历史| 江口县| 延津县| 邵武市| 临西县| 皮山县| 醴陵市| 海安县| 得荣县| 淮南市| 乐至县| 高平市| 武鸣县| 子洲县| 阿尔山市| 灵川县| 宜良县| 两当县| 友谊县| 梅河口市| 高唐县| 当涂县| 四子王旗| 左云县| 饶河县| 乳源| 疏附县| 通城县| 南昌县| 桃园县| 泾源县| 大新县| 灌南县| 鹤庆县| 托克托县| 曲麻莱县|