list_1 = ["text text text", "text more text", "also text", "so much text"]

list_2 = [0, 1, 0, 1]
list_combine = []
for f, b in zip(list_1, list_2):
    list_combine.append((f, b))
    
print(list_combine)