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

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

對(duì)齊文本文件python中的多個(gè)函數(shù)

對(duì)齊文本文件python中的多個(gè)函數(shù)

天涯盡頭無(wú)女友 2023-09-12 17:52:53
我正在嘗試根據(jù)用戶輸入將多個(gè)函數(shù)寫(xiě)入文件。這里的問(wèn)題是寫(xiě)入文件的代碼沒(méi)有左對(duì)齊。也許缺少一些基本元素。這是代碼:import requestsG=input("Define Count")for k in range(0,G):perf=Gif k==0 :        string = """            ### RUN ####            def run():                d = collections.OrderedDict()                d['run']= 123,                return d            URL = "https://..../run"            headers  = {"Content-Type":"application/json",                        "Authorization": Token}            payload = json.dumps([run() for n in range(%s)])            resp = requests.post(URL, headers = headers ,data = payload))            if resp.status_code = 200:                print('Fail: ' + str(resp.status_code)+ str(resp.text))            else:                print('Pass' + str(resp.status_code)+ str(resp.text))                """            string = Template % (Perf)            with open(path, 'a') as f:                f.write(string)elif k==1:         string = """            ### STOP ####            def stop():                d = collections.OrderedDict()                d['STOP']= 123,                d['wait']=20                return d            URL = "https://..../stop"            headers  = {"Content-Type":"application/json",                        "Authorization": Token}            payload = json.dumps([stop() for n in range(%s)])            resp = requests.post(URL, headers = headers ,data = payload))            if resp.status_code = 200:                print('Fail: ' + str(resp.status_code)+ str(resp.text))            else:                print('Pass' + str(resp.status_code)+ str(resp.text))                """            string = Template % (Perf)            with open(path, 'a') as f:                f.write(string)  elfif k=.....當(dāng)在循環(huán)中執(zhí)行時(shí),我期望寫(xiě)入后的輸出文件,左對(duì)齊為:   def run():            ....            ....   def stop():           ....           ....   def wait():           ....不知道為什么我會(huì)出現(xiàn)不規(guī)則的縮進(jìn)。請(qǐng)幫助我
查看完整描述

1 回答

?
慕的地8271018

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

我發(fā)現(xiàn)您共享的代碼存在幾個(gè)主要邏輯問(wèn)題。


所有條件均表示為 = 而不是 ==

    # For Example,

    if k=0 :   # This is wrong

    if k == 0: # This is correct for the comparison

我在您的代碼中沒(méi)有看到正確的縮進(jìn)。希望是復(fù)制粘貼問(wèn)題。

對(duì)于您的邏輯,您可以創(chuàng)建一個(gè)出色的函數(shù)指針映射。例如

def func1():

  print('func1')


def func2():

  print('func2')


funcs_map = {}

funcs_map[1] = func1

funcs_map[2] = func2



for i in range(10);

  if i in funcs_map.keys():

      func_ptr = funcs_map[i]

      func_ptr()


# The above approach would be easy to manage to it will help you debug

# instead of hardcoding functionality within string. 

祝你好運(yùn),看看上述建議是否解決了您的問(wèn)題。


查看完整回答
反對(duì) 回復(fù) 2023-09-12
  • 1 回答
  • 0 關(guān)注
  • 110 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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