小編今天給大家介紹將變量傳遞給腳本的方法。
在 python 中如果要運(yùn)行一個(gè)my.py腳本,只需要在命令行中運(yùn)行 python my.py,這句命令中的 my.py 部分就是所謂的‘參數(shù)(argument)’,現(xiàn)在要做的是如何寫一個(gè)可以接受參數(shù)的腳本。
from sys import argv script , first , second , third = argv
print('the script is called ',script)
print('your first variable is ',first)
print('your second variable is ',second) print('your thrid variable is ',thrid)
- 第一行中 import 導(dǎo)入庫,argv 就是所謂的‘參數(shù)變量(arguement variable),這個(gè)變量包含了傳遞給 python 的參數(shù);
- 第二行 argv 解包(unpack),意思為把 argv 東西解包,將所有參數(shù)依次賦予左邊的變量名。
在命令行中實(shí)現(xiàn) my.py 的調(diào)用必須傳遞三個(gè)參數(shù)
python my.py first 2nd 3nd
在終端執(zhí)行時(shí)將看到以下效果:
$ python my.py first 2nd 3nd
the script is called my
your first variable is first
your second variable is 2nd
your thrid variable is 3nd
推薦好課:Python3零基礎(chǔ)入門到爬蟲實(shí)戰(zhàn)、Python自動(dòng)化辦公+數(shù)據(jù)可視化視頻課程