第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

從 pandas 數(shù)據(jù)框中檢索數(shù)據(jù)并在 os.system() 命令中輸入值

從 pandas 數(shù)據(jù)框中檢索數(shù)據(jù)并在 os.system() 命令中輸入值

互換的青春 2023-08-08 16:23:18
我有一個(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))




查看完整回答
反對 回復(fù) 2023-08-08
?
波斯汪

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]))



查看完整回答
反對 回復(fù) 2023-08-08
  • 2 回答
  • 0 關(guān)注
  • 135 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號