Python中的打印功能是在新行上打印结果

时间:2015-10-29 16:37:11

标签: python python-3.x

我目前正在编写一个基本的骰子软件密码生成器。我在打印最终密码组合时遇到问题。我正在打印的字符串是在一行上打印每个单词而不是在一行上打印整个字符串。我不太清楚为什么。

我的代码如下:

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()

2 个答案:

答案 0 :(得分:1)

您可以在打印之前替换finalPass字符串中“”的所有“\ n”符号

我会给你建议 - 在问任何问题之前尝试在python文档中找到答案并在stackoverflow存档上搜索你的问题。

答案 1 :(得分:0)

感谢您的帮助。以为我会分享最终更有效的代码版本!

&#13;
&#13;
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;
&#13;
&#13;