I'm quite new to python... so if
string_1 = ["a", "b", "c", "d"]
string_2 = [1,2,3,4]
how can I make it so it would print out:
a equals 1
b equals 2
c equals 3
d equals 4
I've tried:
for i in string_1:
for j in string_2:
print(i, "equals", j)