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

8、Python —— 输入输出

时间:2014-07-22 08:31:34      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   os   文件   for   

>

1、使用文件

# encoding: utf-8
# !/usr/bin/python
# Filename : helloworld.py

peom = ‘‘‘如梦令 李清照
常记溪亭日暮,
沉醉不知归路。
兴尽晚回舟,
误入藕花深处。
争渡,争渡,
惊起一滩鸥鹭。‘‘‘

# 模式可以为读模式(‘r‘)、写模式(‘w‘)或追加模式(‘a‘)
f = file(‘peom.txt‘, ‘w‘)	# open for ‘w‘riting
f.write(peom)
f.close()

# 默认是读模式
f = file(‘peom.txt‘)
while True:
	line = f.readline()
	if len(line) == 0:
		break
	print line
f.close()




8、Python —— 输入输出,布布扣,bubuko.com

8、Python —— 输入输出

标签:style   color   使用   os   文件   for   

原文地址:http://my.oschina.net/cobish/blog/292920

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