How can I avoid python converting big numbers to scientific notation?

前端 未结 2 1388
轮回少年
轮回少年 2021-01-20 03:56

I have data structured as follows:

[\'1404407396000\',
 \'484745869385011200\',
 \'0\',
 \'1922149633\',
 \"The nurse from the university said I couldn\'t go         


        
2条回答
  •  心在旅途
    2021-01-20 05:00

    Use string formatting.

    writer.writerows("%f" % data)
    

    There are various formatting options you can check out here.

提交回复
热议问题