<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
使用sys.args
簡單範例
import sys def test_sys_args(): if len(sys.argv) > 1: print(len(sys.argv) - 1) print(sys.argv) else: print('無引數輸入') if __name__ == '__main__': test_sys_args()
執行
python test.py a 1 test
指令碼檔名後面的是需要傳遞的引數
其它引數在命令列中傳入時需要用空格分開
若引數中需要包含“”,則需要使用到跳脫字元進行跳脫
輸出結果
3
['test.py', 'a', '1', 'test']
所以在二次開發的模擬指令碼中,使用子程式進或命令列執行指令碼,且需要使用此種方式進行傳參時,需要將變數及其引數一併傳遞,具體使用方式如下
#執行指令碼 child_process.exec(command val1=1 val2=2 val3=3)
指令碼內部
sys.argv[1]輸出結果為val1=1
滿足指令碼對的變數需求,成功將指令碼外的引數傳遞到指令碼內
建立獨立指令碼引數檔案
如下所示
node.js後端
var fs = require('fs') fs.writeFile('test.txt', _registerMsg, function (err) { if (err) { return console.log(err); } else { // 變數檔案建立成功後,執行核心計算指令碼 exec("abaqus cae nogui=abaqus.py", function (error, stdout, stderr) { if (stdout.length > 1) { // 計算成功 console.log('you offer args:', stdout); } else { // 計算失敗 console.log('you don't offer args'); } if (error) { console.info('stderr : ' + stderr); } }) } })
指令碼所需引數已經提前拼接並寫入到_registerMsg變數中
python指令碼
import io with io.open("test.txt", encoding='utf-8') as f: code = f.read() exec(code)
指令碼只需開啟同目錄下的引數檔案並執行,即可將引數傳遞到指令碼中
兩種方式的優缺點
平常我們在用別人寫好的python包的時候,在cmd輸入xx -h就能檢視到幫助資訊,輸入xx -p 8080就能把引數傳入程式裡,看起來非常酷。
本篇就來講下如何在python程式碼里加入命令列引數,並且其它功能,能呼叫這個引數。
Python 中也可以所用 sys 的 sys.argv 來獲取命令列引數:
注:sys.argv[0] 表示指令碼名。
test.py程式碼如下
# -*- coding: UTF-8 -*- import sys print '引數個數為:', len(sys.argv), '個引數。' print '參數列:', str(sys.argv)
執行以上程式碼,輸出結果為:
$ python test.py arg1 arg2 arg3
引數個數為: 4 個引數。
參數列: ['test.py', 'arg1', 'arg2', 'arg3']
getopt模組是專門處理命令列引數的模組,用於獲取命令列選項和引數,也就是sys.argv。命令列選項使得程式的引數更加靈活。支援短選項模式(-)和長選項模式(--)。
該模組提供了兩個方法及一個例外處理(Exception getopt.GetoptError)來解析命令列引數。
getopt.getopt 方法用於解析命令列參數列,語法格式如下:
getopt.getopt(args, options[, long_options])
引數說明:
假定我們建立這樣一個指令碼,可以通過命令列向指令碼檔案傳遞兩個檔名,同時我們通過另外一個選項檢視指令碼的使用。指令碼使用方法如下:
$ test.py -i -o
test.py 檔案程式碼如下所示:
# -*- coding: UTF-8 -*- import sys, getopt def main(argv): inputfile = '' outputfile = '' try: opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) except getopt.GetoptError: print 'test.py -i <inputfile> -o <outputfile>' sys.exit(2) for opt, arg in opts: if opt == '-h': print 'test.py -i <inputfile> -o <outputfile>' sys.exit() elif opt in ("-i", "--ifile"): inputfile = arg elif opt in ("-o", "--ofile"): outputfile = arg print '輸入的檔案為:', inputfile print '輸出的檔案為:', outputfile if __name__ == "__main__": main(sys.argv[1:])
執行以上程式碼,輸出結果為:
$ python test.py -h
usage: test.py -i <inputfile> -o <outputfile>
$ python test.py -i inputfile -o outputfile
輸入的檔案為: inputfile
輸出的檔案為: outputfile
結合selenium測試,比如我想測試chrome瀏覽器,那就在命令列輸入“chrome”引數,想測試firefox瀏覽器的時候,就在命令列輸入“firefox”引數,這樣就能靈活切換不同瀏覽器之間的測試了
# 儲存為run.py # coding:utf-8 import sys, getopt from selenium import webdriver import time def main(argv): ''' 命令列傳參 上海-悠悠部落格:https://www.cnblogs.com/yoyoketang/ ''' name = "firefox" # 給個預設值 try: # 這裡的 h 就表示該選項無引數,n:表示 n 選項後需要有引數 opts, args = getopt.getopt(argv, "hn:", ["name="]) except getopt.GetoptError: print('Error: test_yoyo.py -n <browsername>') print(' or: test_yoyo.py --name=<browsername>') sys.exit(2) for opt, arg in opts: if opt == "-h": print('test_yoyo.py -n <browsername>') print('or: test_yoyo.py --name=<browsername>') sys.exit() elif opt in ("-n", "--name"): name = arg print('run browser name : %s' % name) return name def browser(n=None): ''' 啟動瀏覽器, n是瀏覽器名稱,支援瀏覽器:chrome ,firefox 上海-悠悠部落格:https://www.cnblogs.com/yoyoketang/ ''' if n == None: name = main(sys.argv[1:]) else: name = n if name == "firefox": print("當前執行瀏覽器:%s" % name) return webdriver.Firefox() elif name == "chrome": print("當前執行瀏覽器:%s" % name) return webdriver.Chrome() else: print("支援瀏覽器:chrome,firefox") if __name__ == "__main__": driver = browser() driver.get("https://www.cnblogs.com/yoyoketang/") t = driver.title print(t) time.sleep(10) driver.quit()
cmd執行情況
C:Usersadmin>d: D:>cd lianxi D:lianxi>python run.py -n chrome Input name : chrome 當前執行瀏覽器:chrome DevTools listening on ws://127.0.0.1:54248/devtools/browser/595fe8cf-524d-4599-9 540-2502f6a6f2ca 上海-悠悠 - 部落格園 D:lianxi>python run.py -n firefox Input name : firefox 當前執行瀏覽器:firefox 上海-悠悠 - 部落格園
備註:python2在cmd執行時,中文會顯示亂碼,用python3就不會有亂碼了
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45