它按我希望的方式打印列表,但我希望它们在同一行上而不是在不同行上彼此相邻。 我正在使用的输入是abcdefghi和jklmnopqr
str1 = (input("please enter a string: "))
str2 = (input("please enter a string: "))
for i in range(0, len(str1)):
e = str1[i] + str2[i]
print(e)
我希望它打印类似:ajbkclemdnfogphqir
但它会这样打印:
aj
bk
cl
em
dn
fo
gp
hq
ir
答案 0 :(得分:0)
str1 = (input("please enter a string: "))
str2 = (input("please enter a string: "))
e = ' '
for i in range(0, len(str1)):
e = e + str1[i] + str2[i]
print(e)
希望这会有所帮助