import random class Solution: def solve(self): s="abcdefghijklmnopqrst\ uvwxyzABCDEFGHIJKLMNOPQRST\ UVWXYZ1234567890!@#$%^&*" li = [] for i in range(0, 10): li2 = [] for i in range(0, 10): if i == 0: x = random.randint(0, 69) while x in li: x = random.randint(0, 69) li.append(x) else: x = random.randint(0, 69) li2.append(s[x]) a = "".join(li2) with open("step3/output.txt", "w") as f: f.write(a + '\n') 文件里如何有十行密码
时间: 2024-02-10 07:12:28 浏览: 92
这段代码实现了生成随机密码的功能。具体来说,它将包含各种字符的字符串 s 定义为密码字符集,然后生成 10 个密码,每个密码包含 10 个随机选择的密码字符。生成每个密码时,它会确保每个字符都是唯一的,以避免密码中有重复字符。
如果你想让这段代码生成十行密码并将它们写入文件,可以将代码修改为:
```
import random
class Solution:
def solve(self):
s="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*"
with open("step3/output.txt", "w") as f:
for i in range(10):
li = []
for j in range(10):
x = random.randint(0, 69)
while x in li:
x = random.randint(0, 69)
li.append(x)
f.write(s[x])
f.write('\n')
```
这样会生成十个长度为 10 的密码,并将它们写入名为 "output.txt" 的文件中,每个密码占一行。
阅读全文