だから私が直面したこの新しい問題はこれです。それぞれ5つのアイテムを持つ2つのリストがあります。
listone = ['water', 'wind', 'earth', 'fire', 'ice']
listtwo = ['one', 'two', 'three', 'four', 'five']
私がやりたいのは、これらの各リストの1番目、2番目、3番目、5番目の項目を文字列に出力することです。
print("the number is %s the element is %s" % (listtwo, listone)
ただし、2つのリストの各要素に対してテキストが実行されるように、毎回新しい行に印刷する必要があります。
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
私はこれを行う方法がわかりません。リスト分割を使ってみましたが、5つのうち4つ目なのでスキップする方法がわかりません。また、これを使用して、新しい行に文字列を一覧表示します。
for x in listone and listtwo:
print("the number is {0} the element is {0}".format(x)
しかし、これを2つのリストで使用する方法や、2つのリストで使用できるかどうかもわかりません。
助けてください :(
編集:
また、スクリプトの要素が何であるかわからないので、リスト内のそれらの番号のみを使用できます。したがって、両方のリストの[4]を削除する必要があります。