You can use the zip()
function to join lists together.
a = ['a', 'b', 'c']
b = ['1', '0', '0']
res = "
".join("{} {}".format(x, y) for x, y in zip(a, b))
The zip()
function will iterate tuples with the corresponding elements from each of the lists, which you can then format as Michael Butscher suggested in the comments.
Finally, just join()
them together with newlines and you have the string you want.
print(res)
a 1
b 0
c 0
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…