所以我遇到的这个新问题就是这个。我有两个列表,每个列表有五个项目。
listone = ['water', 'wind', 'earth', 'fire', 'ice']
listtwo = ['one', 'two', 'three', 'four', 'five']
我想要做的是打印字符串中每个列表中的第一个、第二个、第三个和第五个项目:
print("the number is %s the element is %s" % (listtwo, listone)
但是他们每次都需要在新行中打印,以便为两个列表中的每个元素运行文本:
the number is one the element is water
the number is two the element is wind
the number is three the element is earth
the number is five the element is five
我不知道该怎么做。我尝试使用列表拆分,但由于它是五项中的第四项,我无法弄清楚如何跳过它。我也用它在新行中列出字符串:
for x in listone and listtwo:
print("the number is {0} the element is {0}".format(x)
但我不知道如何将它与两个列表一起使用,或者它是否甚至可以与两个列表一起使用。
请帮忙 :(
编辑:
另外我不知道脚本的元素是什么,所以我只能在列表中使用它们的编号。所以我需要去掉两个列表中的 [4] 。