python脚本传递args参数传递方法
python脚本传递args参数传递方法
import sys def main(): args = sys.argv[1:] if(len(args)==2): print("传递的参数:", args, len(args)) print(args[0]) print(args[1]) if(args[0]=='open_door'): print("执行门打开") if (args[1] == 'close'): print("执行门关闭") else: print("传递的参数,需要2个") # Press the green button in the gutter to run the script. if __name__ == '__main__': print_hi('good day') main()
欢迎讨论,相互学习。
cdtxw@foxmail.com