i'm new to python and i'm still learning it. i really need your help on how to print both index of two list using nested loop in python. for example i want to print both index 0 to index 2 of my 2 list.
Example:
List1 = [Ryan, John, Steve, Robert]
List2 = [Anna, Ruby, Ella]
Output should be like this:
Ryan loves Anna
John loves Ruby
Steve loves Ella
then it will ignore the value of 3rd index of List1.