【Python】Python向txt文本中写入数据

【Python】Python向txt文本中写入数据,第1张

file =open('D:\wk\data.txt','w')

for i in range(1,101):
    file.write(("123101196001015" +str(i).zfill(3) )+'\n')#身份z号
file.close()

注:str.zfill(width)指定字符串的长度,原字符串右对齐,前面填充0

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/758550.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-01
下一篇 2022-05-01

发表评论

登录后才能评论

评论列表(0条)

保存