summaryrefslogtreecommitdiff
path: root/progs/a907.py
blob: 636bfb9217e16f2f0097dbabc325b0f20bf9b170 (plain)
1
2
3
def flatten_tuple(test_list):
  res = ' '.join([idx for tup in test_list for idx in tup])
  return (res)