我有一個(gè) Pandas 數(shù)據(jù)框,其中一整列數(shù)值應(yīng)作為來自 的命令的輸入os.system()。這個(gè) os.system() 正在執(zhí)行一個(gè) .exe 文件,如下所示 os.system(r'xxxx.exe --file "Input_directory" --output "Output_directory" --start 0 --end 10000')此命令中的開始到結(jié)束值應(yīng)該從我的數(shù)據(jù)幀的列中獲取值。我嘗試循環(huán)遍歷我的 df 列。for i in df['xxx']:
os.system(r'xxxx.exe --file "Input_directory" --output "Output_directory" --start i --end i')起始值和結(jié)束值可以相同。但是在此命令中循環(huán)并輸入變量不起作用。還有其他方法嗎?
2 回答

慕標(biāo)5832272
TA貢獻(xiàn)1966條經(jīng)驗(yàn) 獲得超4個(gè)贊
for i in df['xxx']: os.system(r'xxxx.exe --file "Input_directory" --output "Output_directory" --start {} --end {}'.format(i, i))

波斯汪
TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超4個(gè)贊
嘗試這個(gè)
vals = df['col_name'].values.tolist() # Will fetch all the values of that column in a list form
現(xiàn)在您可以嘗試根據(jù)需要發(fā)送它們
我正在根據(jù)我的理解編寫答案,您想要發(fā)送列表的第一個(gè)和最后一個(gè)值
os.system(r'xxxx.exe --file "Input_directory" --output "Output_directory" --start {} --end {}'.format(vals[0], vals[-1]))
添加回答
舉報(bào)
0/150
提交
取消