我的代碼在while循環中。 它基本上會嘗試類似captcha。在python中重新啓動一個函數
所以,我想是這樣的
def loop():
toplam = 0
global sayilar
x = br.open(something)
html = x.read()
sayilar = map(str.strip,''.join(kod.findall(html)).split("\xc4\x84\xc5\x95\xc5\xa3\xc4\xb1"))
print sayilar
for i in sayilar:
if i in diction:
toplam += diction[i]
else
#break the function
if __name__ == "__main__":
giris()
while 1:
loop()
無法找到在詞典中的數字,你會打破功能並重新啓動該功能,因爲功能是在while循環。
什麼是你的問題? –
如何打破功能?其他:#破解功能 –
爲什麼不使用break? –