如何修复这个python脚本?

时间:2015-11-02 23:03:17

标签: python python-2.7

我遇到了这个python脚本的问题,它不会在新行上打印。我挂了一些东西,但我遇到了同样的问题

#!/usr/bin/env python

import time,os

os.system("clear")
time.sleep(2)

wordlist = raw_input("Path to wordlist: ")
os.system("clear")

print "Hacking in Mo's lunch number"
time.sleep(2)

passwords = open(wordlist).read().splitlines()
for password in passwords:
    os.system("clear")
    print password
    os.system("clear")
    print "Access Denied"

    if password == " 05251":
        break
        os.system("clear")
        print "Access Granted"
        time.sleep(2)
        print "Lunch number: " + password

我让脚本正常工作但if语句没有工作

1 个答案:

答案 0 :(得分:0)

您将DEBUG放在break line的第一个位置,因此永远不会读取下一行。 只需将断开行传递给if语句的末尾。

if statement