码迷,mamicode.com
首页 > 其他好文 > 详细

列表转换成文件

时间:2016-11-04 01:53:11      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:close   log   color   utf8   strip   blog   转换   文件   pre   

f = open("Information.txt","w+",encoding="utf8")
Information = [["1","alex","IT"],["2","bob","IT"]]
User_Choice = int(input("Your choice is:"))
for i in Information:
    if User_Choice == int(i[0]):
       Information.remove(Information[User_Choice])
       for j in Information:
           f.write(,.join(j).strip()) #关键是这一步,把列表通过join方法转换成字符串,然后再写入文件
           f.close()

该程序的作用是用户输入数字后,会删掉列表中对应的元素,然后再把列表中剩余的元素写入文件中

列表转换成文件

标签:close   log   color   utf8   strip   blog   转换   文件   pre   

原文地址:http://www.cnblogs.com/uglyliu/p/6028669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!