这是一个非常简单的练习的一部分。我有一个.exe文件。打开后,它会显示“ Welcome!Enter the key”,并要求用户输入一个。如果输入错误,则显示“错误!请重试...”并关闭。
我也有一个.txt文件。我想对.exe运行.txt文件,其方式是将.txt文件中的每个条目输入到.exe的输入中,以查看其是否有效。 有没有简单的方法可以做到这一点?我已经搜索了几个小时,但不确定如何继续。
答案 0 :(得分:0)
此代码应该起作用。请记住,它是用python创建的,因为它是标签之一,保存时将.txt更改为.exe。
文件:
你好
蜜蜂
海
跳蚤
import random
a = True
file = open('route to file location',"r")
file1 = file.read()
file1 = file1.split()
length = len(file1)
randomised = random.random(1,length)
passw = R[randomised]
s = input("Welcome:")
while a is True:
if s == passw:
a = False
else:
s = input("Wrong!")