我目前正在编写一个基本的骰子软件密码生成器。我在打印最终密码组合时遇到问题。我正在打印的字符串是在一行上打印每个单词而不是在一行上打印整个字符串。我不太清楚为什么。
我的代码如下:
import random
finalPass=""
def choosePass():
global finalPass
i=0
j=0
while(i<=5):
num=""
num=str(random.randint(1,6))
while(j<4):
num=num+str(random.randint(1,6))
j+=1
f=open('container', 'r')
for line in f:
if(line[0:5]==num):
line=line[6::]
line=line.replace(' ','')
#Add the new word to the string of old words
finalPass+=str(line,)
f.close()
j=0
i+=1
#This is printing each word to a new line. I want it to print to the same line
print(finalPass)
choosePass()
答案 0 :(得分:1)
您可以在打印之前替换finalPass字符串中“”的所有“\ n”符号
我会给你建议 - 在问任何问题之前尝试在python文档中找到答案并在stackoverflow存档上搜索你的问题。
答案 1 :(得分:0)
感谢您的帮助。以为我会分享最终更有效的代码版本!
import random
password=""
def choosePass():
global password
for i in range(0,6):
num=""
for j in range(0,5):
num=num+str(random.randint(1,6))
f=open('container','r')
for line in f:
if(line[0:5]==num):
line=line[6::].strip()
password+=line+' '
f.close()
print(password+''+str(random.randint(100,1000)))
choosePass()
&#13;