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

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

如何從另一個(gè)腳本編寫一個(gè)腳本?

如何從另一個(gè)腳本編寫一個(gè)腳本?

慕碼人2483693 2023-07-27 16:26:13
我需要根據(jù)用戶輸入執(zhí)行以下函數(shù):如果X=0,則應(yīng)URL ....Print('Success將行中的內(nèi)容寫入文件并另存為test.py.在后端,Test.py任務(wù)調(diào)度程序會(huì)自動(dòng)從保存的位置獲取保存的文件 ( ) 并定期運(yùn)行。是的,我們有很多例子來編寫一個(gè)文件/從另一個(gè)文件運(yùn)行 python,但無法從另一個(gè)文件編寫 python 腳本。我肯定缺少一些基本步驟。if x=0:   ### Need to write below content to a file & save as test.py######   URL = "https://.../login"   headers  = {"Content-Type":"application/json"}   params = {   "userName":"xx",   "password":"yy"   }   resp = requests.post(URL, headers = headers, data=json.dumps(params))   if resp.status_code != 200:       print('fail')   else:       print('Success')]else:   ### Need to write below content to a file ######   URL = "https://.../login"   headers  = {"Content-Type":"application/json"}   params = {   "userName":"RR",   "password":"TT"   }   resp = requests.post(URL, headers = headers, data=json.dumps(params))   if resp.status_code != 200:       print('fail')   else:       print('Success')
查看完整描述

3 回答

?
紅顏莎娜

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

您可以使用三引號(hào)來簡(jiǎn)化事情。


if x==0:

    path = "test.py"

    string = """\

import requests, json

URL = "https://.../login"

headers  = {"Content-Type":"application/json"}

params = {

    "userName":"xx",

    "password":"yy"

    }

resp = requests.post(URL, headers = headers, data=json.dumps(params))

if resp.status_code != 200:

    print('fail')

else:

    print('Success')

"""

else:

    path = "other.py"

    string = """\

import requests, json

URL = "https://.../login"

headers  = {"Content-Type":"application/json"}

params = {

    "userName":"RR",

    "password":"TT"

    }

resp = requests.post(URL, headers = headers, data=json.dumps(params))

if resp.status_code != 200:

    print('fail')

else:

    print('Success')

"""


with open(path, 'w') as f:

    f.write(string)



請(qǐng)參閱文檔。大約在頁(yè)面下方的三分之一處。



查看完整回答
反對(duì) 回復(fù) 2023-07-27
?
繁星點(diǎn)點(diǎn)滴滴

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

new_file = "print('line1')\n" \

           "print('line2')\n" \

           "print('line3')"


f = open('new_python.py', 'w')

print(new_file, file=f)


查看完整回答
反對(duì) 回復(fù) 2023-07-27
?
慕田峪7331174

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

如果你想保存到文件中,最終它必須是一個(gè)字符串。

該文件的兩個(gè)變體看起來非常相似,因此不要將其寫入兩次:


template ='''

URL = "https://.../login"

headers  = {"Content-Type":"application/json"}

params = {

   "userName":"%s",

   "password":"%s"

}

resp = requests.post(URL, headers = headers, data=json.dumps(params))

if resp.status_code != 200:

   print('fail')

else:

   print('Success')

'''


if x == 0:

    content = template % ("xx", "yy")

else:

    content = tempalte % ("RR", "TT")


with open("test.py", "w") as f:

   f.write(content)


查看完整回答
反對(duì) 回復(fù) 2023-07-27
  • 3 回答
  • 0 關(guān)注
  • 177 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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