I have two lists which I want to zip
List A:
["hello ", "world "]
List B:
["one", "two", "three"]
I want to zip the elements in the lists like so:
[("hello","one")
("hello","two")
("hello","three")
("world","one")
("world","two")
("world","three")]
Obviously, I can use a double for loop and append the elements but I am wondering what would be a good pythonie way of doing this?