成功解决sys.argv[1] IndexError: list index out of range错误
成功解决sys.argv[1] IndexError: list index out of range错误
解决问题
sys.argv[1]
IndexError: list index out of range
解决思路
argv[1]:sys.argv[]是用来获取命令行参数的,sys.argv[0]表示代码本身文件路径,所以参数从1开始。Sys.argv[ ]其实就是一个列表,里边的项为用户输入的参数,关键就是要明白这参数是从程序外部输入的,而非代码本身的什么地方,要想看到它的效果就应该将程序保存了,从外部来运行程序并给出参数。
解决办法
python SCRIPT_NAME FIRST_ARG
哈哈,大功告成!
相关推荐
-
python之sys.argv获取命令行的参数
python之sys.argv获取命令行的参数
-
C和指针之函数之求参数列表中的最大值
C和指针之函数之求参数列表中的最大值
-
ANSYS APDL与二次开发(2) —— 联合仿真分析基础
引言 前文我们主要介绍了APDL语言的一些基本功能,如循环(*do).判断(*if)和读(*vread)写(*vwrite)文件等功能,这些功能都是二次开发的基础. ANSYS APDL与二次开发(1 ...
-
python笔记21-列表生成式
前言 python里面[]表示一个列表,快速生成一个列表可以用range()函数来生成. 对列表里面的数据进行运算和操作,生成新的列表最高效快速的办法,那就是列表生成式了. range() 1.一个连 ...
-
C#调用python脚本并传递参数的一种方法
最近正好用python做了一个程序,由于是没有UI界面,使用起来没那么方便,同事建议将他做一个UI界面,方便操作,但又由于不想搞什么QT或者是Tkinter(太麻烦,其实真正的原因是我更擅长C#,手动 ...
-
成功解决.append方法出现错误IndexError: list index out of range
成功解决.append方法出现错误IndexError: list index out of range 解决问题 .append方法出现错误IndexError: list index out of ...
-
成功解决sys:1: DtypeWarning: Columns (39,41,42,217) have mixed types.Specify dtype option on import or s
成功解决sys:1: DtypeWarning: Columns (39,41,42,217) have mixed types.Specify dtype option on import or s ...
-
成功解决IndexError: index 0 is out of bounds for axis 1 with size 0
成功解决IndexError: index 0 is out of bounds for axis 1 with size 0 解决问题 IndexError: index 0 is out of b ...
-
成功解决IndexError: index 14 is out of bounds for axis 1 with size 14
成功解决IndexError: index 14 is out of bounds for axis 1 with size 14 解决问题 IndexError: index 14 is out o ...
-
成功解决 shape = predictor(img, dets[0]) IndexError: Index out of range
成功解决 shape = predictor(img, dets[0]) IndexError: Index out of range 解决问题 shape = predictor(img, d ...
-
成功解决tensorflow.python.framework.errors_impl.InvalidArgumentError: slice index 1 of dimension 0 out o
成功解决tensorflow.python.framework.errors_impl.InvalidArgumentError: slice index 1 of dimension 0 out o ...
-
成功解决TypeError: ‘float’ object cannot be interpreted as an index
成功解决TypeError: 'float' object cannot be interpreted as an index 解决问题 TypeError: 'float' object canno ...
-
成功解决TypeError: only integer scalar arrays can be converted to a scalar index
成功解决TypeError: only integer scalar arrays can be converted to a scalar index 解决问题 TypeError: only in ...
-
成功解决IndexError: arrays used as indices must be of integer (or boolean) type
成功解决IndexError: arrays used as indices must be of integer (or boolean) type 解决问题 IndexError: arrays ...