删除空格

发布于 2024-10-12 04:59:57 字数 802 浏览 3 评论 0原文

#!/usr/bin/python
import random
lower_a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
upper_a = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']

all = []
all = "".join("".join(lower_a) + "".join(upper_a) + "".join(num))
all = all.split()
x = 0
while x < 10:
    for i in range(7):
        a = random.choice(all)
        print a,
    print
    x += 1

我想要做的是从输出中删除空格。它现在给出的是:

Z 3 a A I K R
G B i N 9 c E
v g E r A N 8
e B 6 d v H O
c a V 8 c x y
b g 2 W a T T
f 8 H T r 6 E
p D K l 5 p u
x q 8 P Z 9 T
n I W X n B Q
#!/usr/bin/python
import random
lower_a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
upper_a = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
num = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']

all = []
all = "".join("".join(lower_a) + "".join(upper_a) + "".join(num))
all = all.split()
x = 0
while x < 10:
    for i in range(7):
        a = random.choice(all)
        print a,
    print
    x += 1

What I want to do is remove the spaces from the output. What it gives now is:

Z 3 a A I K R
G B i N 9 c E
v g E r A N 8
e B 6 d v H O
c a V 8 c x y
b g 2 W a T T
f 8 H T r 6 E
p D K l 5 p u
x q 8 P Z 9 T
n I W X n B Q

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

空名 2024-10-19 04:59:57

将它们与 string 模块放在一起。

import random
import string

chars = string.ascii_uppercase + string.ascii_lowercase + string.digits

for row in range(10):
    print ''.join(random.choice(chars) for col in range(7))

Putting it all together with the string module.

import random
import string

chars = string.ascii_uppercase + string.ascii_lowercase + string.digits

for row in range(10):
    print ''.join(random.choice(chars) for col in range(7))
祁梦 2024-10-19 04:59:57

而不是:

 for i in range(7):
  a = random.choice(all)
  print a,
 print

你可以这样做:

 print "".join(random.choice(all) for x in range(7))

instead of:

 for i in range(7):
  a = random.choice(all)
  print a,
 print

you could do this:

 print "".join(random.choice(all) for x in range(7))
你曾走过我的故事 2024-10-19 04:59:57

没关系 - 我修好了

while x < 10:
    y = []
    for i in range(7):
        a = random.choice(all)
        y.append(a)
    print "".join(y)
    x += 1

nevermind - i fixed it

while x < 10:
    y = []
    for i in range(7):
        a = random.choice(all)
        y.append(a)
    print "".join(y)
    x += 1
岁月打碎记忆 2024-10-19 04:59:57

空格是通过 print a, 放置的。 print 语句后面的逗号打印一个空格。

The space is placed by print a,. A comma following print statement print a space.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文