0
私のコードでは、なります同時に2つの変数を反復処理する方法は?次のように
startDates = ['2011-01-01','2012-01-01']
endDates = ['2013-01-01','2014-01-01']
theJuice = []
for startDate in startDates and endDate in endDates:
start_date = startDate
end_date = endDate
print start_date
print end_date
私はあなたが私を助けることができると思います。
は 'ジッパー()'関数を組み込みのためのドキュメントを読んでください。 –
startDateとendDateのすべての組み合わせが必要ですか?すなわち、2回の反復または4回の反復が必要ですか? –