摘要:
import csvimport pandas as pdwith open('D:\Data\新建文件夹\list3.2.csv','r') as csvfile: reader = csv.reader(csvfile) column1 = [row[1]for row in reader] p 阅读全文
摘要:
pycharm中配置main参数 Run->Edit Configurations->Script Parames 把需要在xxx.py A B C 后面的参数输入到如下位置。 否则会报错:int(sys.argv[1]) IndexError: list index out of range 表示 阅读全文