删除空格
#!/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将它们与
string
模块放在一起。Putting it all together with the
string
module.而不是:
你可以这样做:
instead of:
you could do this:
没关系 - 我修好了
nevermind - i fixed it
空格是通过
print a,
放置的。 print 语句后面的逗号打印一个空格。The space is placed by
print a,
. A comma following print statement print a space.