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

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

結(jié)合2個python函數(shù)

結(jié)合2個python函數(shù)

慕桂英546537 2023-12-20 14:05:56
我有兩個獨立的功能,可以完美地工作,但我無法將它們組合起來。這是第一個:with open('/topladder/top_fr', 'r') as file1:    with open('/topladder/top_pression', 'r') as file2:        same = set(file1).intersection(file2)with open('/topladder/pr_top_fr', 'w') as file_out:    for line in same:        file_out.write(line)我在文件上得到了很好的結(jié)果,幾行,如下所示:#000000#111111#AAAAAA第二個從 JSON 文件中提取數(shù)據(jù),如下所示:    data = json.loads(response)    for p in data ["items"]:            if p["tag"] == #BBBBBB :                print("%s %s %s" % (                    p["rank"],                    p["name"],                    p["trophies"],))我也得到了很好的結(jié)果。但是,我想使用第一個腳本的結(jié)果并結(jié)合兩個腳本執(zhí)行以下操作,而不是手動放置標簽:with open('/topladder/top_fr', 'r') as file1:    with open('/topladder/top_pression', 'r') as file2:        same = set(file1).intersection(file2)    data = json.loads(response)    for p in data ["items"]:        for line in same:            if p["tag"] == line :                print("%s %s %s" % (                    p["rank"],                    p["name"],                    p["trophies"],))但是,沒有結(jié)果...我想我還沒有到此為止,謝謝您!
查看完整描述

1 回答

?
汪汪一只貓

TA貢獻1898條經(jīng)驗 獲得超8個贊

line以換行符結(jié)尾,您需要在與 進行比較之前將其刪除p["tag"]。


if p["tag"] == line.strip():

您可以通過在創(chuàng)建集合時刪除它們來更有效地完成此操作:


same = set(x.strip() for x in set(file1).intersection(file2))

也不需要循環(huán)same,使用in.


for p in data["items"]:

    if p["tag"] in same:

        print("%s %s %s" % (

            p["rank"],

            p["name"],

            p["trophies"],

        ))


查看完整回答
反對 回復 2023-12-20
  • 1 回答
  • 0 關(guān)注
  • 151 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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