我正在创建一个基本程序,将单词变成单个字符,然后以各种可能的方式拼写所有字符。我遇到的唯一问题是到处乱写字符。
以各种可能的方式,我的意思是说你有“the”这个词,你可以有“hte”和“eth”等等。
到目前为止我的代码:
user = input("First; ")
user2 = input("Second; ")
user3 = input("Third; ")
user4 = input("Fourth; ")
user5 = input("Fifth; ")
with open("file.txt", 'r+') as file:
file.truncate()
file.write(user + user2 + user3 + user4 + user5)
xy = open("file.txt", "r")
yy = xy.read()
wow = list (yy)