Answer the question
In order to leave comments, you need to log in
How to display data from two lists?
There are 2 lists:
f = ['1', '2', '3', '4', '5']
s = ['раз', 'два', 'три', 'четыре', 'пять']
1 = раз
2 = два
3 = три
4 = четыре
5 = пять
for i in range(len(f)):
for j in range(len(s)):
print(f[i], '=', s[j])
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question