奔跑的东东
wq4113
全部博文(199)
2015年(101)
2014年(97)
2011年(1)
杀猪的杀
yinzhe19
镇水铁牛
Cwant
lilong_c
neverini
蓝色未央
wonder_1
_寒_CU
gumuzhiy
haokunsh
分类: Python/Ruby
2015-08-03 11:31:47
# 写文件
with open("test.txt", "wt") as out_file: out_file.write("该文本会写入到文件中\n看到我了吧!")
# Read a file
with open("test.txt", "rt") as in_file: text = in_file.read()
print(text)
上一篇:显示日历
下一篇:字符串判断
登录 注册