码迷,mamicode.com
首页 > 编程语言 > 详细

python3读取文件

时间:2014-12-05 12:28:12      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   sp   for   on   文件   div   2014   

bubuko.com,布布扣bubuko.com,布布扣

 

#coding:utf-8

rfile = open(‘test.txt‘,‘r‘)
str=[]
for x in rfile:
    str = x.split(‘,‘)
for x in str:
    print (chr(int(x)),end=‘‘)
rfile.close()

  

python3读取文件

标签:blog   http   os   sp   for   on   文件   div   2014   

原文地址:http://www.cnblogs.com/jhcla/p/4146211.html

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