問題如下:“通過組合上面 3 個列表中的 4 個單詞來創(chuàng)建密碼。打印密碼”在該問題中,組合意味著將單詞連接在一起。我的代碼打印在下面,但我很好奇如何優(yōu)化它。我確信我不需要將密碼列出來。請隨意包含我可以做的任何其他優(yōu)化。謝謝!import itertoolsimport randomnouns =[A large list of strings]verbs = [A large list of strings]adjs = [A large list of strings]# Make a four word password by combining words from the list of nouns, verbs and adjsoptions = list(itertools.chain(nouns, verbs, adjs))password = []for _ in range (4): password.append(options[random.randint(0,len(options)-1)]) password = "".join(password) print(password)
如何將列表中的項目附加到Python中的字符串中
長風(fēng)秋雁
2023-09-26 15:03:59