I have two tuples
("string1","string2","string3","string4","string5","string6","string7")
and
("another string1","another string2",3,None,"another string5",6,7)
I would like to do something like this:
("string1another string1","string2another string2","string33","string4","string5another string5","string66","string77").
It would also be ok with a result like:
("string1another string1","string2another string2","string33","string4None","string5another string5","string66","string77")
But since I'm new to Python I'm not sure on how do that. What is the best way of combining the two tuples?