You accomplish this by using list comprehention and .join string method:
result = [' '.join([tup[0],tup[1]]) for tup in test_1]