如何在一行中打印列表元素?

时间:2018-08-30 12:36:41

标签: python

我需要打印已排序的整数列表,但是它应该在一行中,并且列表方括号中没有,最后也没有任何'\ n'...

import random
n = int(input(""))
l=[]
for i in range(n):
    x = int(input())
    l.append(x)
not_sorted = True
while not_sorted:    
    x = random.randint(0,n-1)
    y = random.randint(0,n-1)
    while x==y:
        y = random.randint(0,n-1)
    if x>y:
        if l[x]<l[y]:
            (l[x],l[y])=(l[y],l[x])
    if x<y:
        if l[x]>l[y]:
            (l[x],l[y])=(l[y],l[x])
    for i in range(0,n-1):
        if l[i]>l[i+1]:
            break
    else:
       not_sorted = False
for i in range(n):
    print(l[i])

输出应如下所示::: 1 2 3 4 5 而不是这样:::: [1,2,3,4,5]

4 个答案:

答案 0 :(得分:6)

您可以使用print将列表解压缩到*,该列表将自动按空格分隔

print(*l)

如果需要逗号,请使用sep=参数

print(*l, sep=', ')

答案 1 :(得分:1)

使用

for i in range(n):
    print(l[i], end=' ')

print(*l, end=' ')

答案 2 :(得分:0)

您可以使用joinlist comprehensions。 唯一的是,列表中的项目应该是字符串,而不是整数

import random

n = int(input(""))
l = []

for i in range(n):
    x = int(input())
    l.append(x)

not_sorted = True

while not_sorted:    
    x = random.randint(0, n-1)
    y = random.randint(0, n-1)
    while x == y:
        y = random.randint(0, n-1)
    if x > y:
        if l[x] < l[y]:
            (l[x], l[y]) = (l[y], l[x])
    if x < y:
        if l[x] > l[y]:
            (l[x], l[y]) = (l[y], l[x])

    for i in range(0, n-1):
        if l[i] > l[i+1]:
            break
    else:
       not_sorted = False

print(', '.join([str(l[i]) for i in range(n)]))

答案 3 :(得分:0)

对于字符串列表,我是这样做的。...

listChar = ["a", "b", "c", "d"]

someChar = ""

for n in listChar:
  someChar = someChar + n

print(someChar)

Res: abcd