python3-sys模組介紹,有需要的小夥伴可以參考一下 # Auther: Aaron Fanimport sysprint(sys.path ) #列印環境變數print(sys.argv) #列印腳本名稱與腳本所帶的所有參數print(sys.argv[2]) #列印腳本所接的第2個參數