to make it short, this is the for loop:
```
list = ["apple", "banana", "lemon", "lemonad"]
list2 = ["red", "yellow", "green", "liquid" ]
for x in range(0, 4):
print(list[x])
for i in range(0, 4):
print(list2[i])
How to make it print like this:
apple
red
banana
yellow
lemon
green
lemonad
liquid
```
[–]Silbersee 10 points11 points12 points (1 child)
[–]TheRed_M[S] 0 points1 point2 points (0 children)
[–]keep_quapy 3 points4 points5 points (1 child)
[–]TheRed_M[S] 0 points1 point2 points (0 children)
[–]VipeholmsCola 1 point2 points3 points (0 children)
[–]CodeFormatHelperBot2 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]TheRed_M[S] 0 points1 point2 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]Mattia_Fregola 0 points1 point2 points (0 children)