How To Extract Tuple Data into Single Element Format

前端 未结 6 1968
-上瘾入骨i
-上瘾入骨i 2021-01-20 15:48

I get back good results from the following, but how to I extract that data from the tuple? In other words, how do I clean up the data?

Here is the data from the data

6条回答
  •  余生分开走
    2021-01-20 16:17

    Other way using map

    map(lambda x: str(x[0]), policy_id)

    If you want new lines then

    "\n".join(map(lambda x: str(x[0]), policy_id))

提交回复
热议问题