first = ["fuck", "you", "bitch"]
second = ["love", "my", "live"]
third = ["sex", "drugs", "rock"]
comb = []

print(["".join(tup) for tup in zip(first, second, third)])

for i in range(len(first)):
	comb.append(first[i] + second[i] + third[i])
print(comb)

first = ["fuck", "you", "bitch", "horse", "carrot"]
second = ["love", "my", "live"]
third = ["sex", "drugs", "rock", "ai"]
comb = []
for i in range(len(first)):
	comb.append(first[i % len(first)] + second[i %  len(second)] + third[i % len(third)])
print(comb)


comb = []
for a in first:
	for b in second:
		for c in third:
			comb.append(a + b + c)
print(comb)


f = ["Anthony", "Timothy", "Sean", "Jim"]
l = ["Smith", "Parker", "Cameron"]
c = []

for surname in l:
	for name in f:
		c.append(name + surname)
print(c)


c = []
for name in f:
	for surname in l:
		c.append(name + surname)
print(c)