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

使用python脚本,清空文件 追加数字

时间:2018-10-25 12:05:21      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:清空文件   结果   ref   .net   truncate   range   https   str   move   

1.追加数字:

#!/usr/bin/python
# -*- coding: utf-8 -*-

f=open(‘f.txt‘,‘w‘)

#追加,从0到9的随机整数, 10个数字一行,共10行
for i in range(0,10):
    f.write(str(i)+‘\n‘)
f.close()

输出结果如下

0
1
2
3
4
5
6
7
8
9

2.清空文件

#!/usr/bin/python
# -*- coding: utf-8 -*-

f=open(‘f.txt‘,‘w‘)

#清空文件
f.truncate();

3.删除文件

#!/usr/bin/python
# -*- coding: utf-8 -*-
import os

#f=open(‘f.txt‘,‘w‘)
f="f.txt"

#删除文件
os.remove(f)

参考:Python:文件的读取、创建、追加、删除、清空

使用python脚本,清空文件 追加数字

标签:清空文件   结果   ref   .net   truncate   range   https   str   move   

原文地址:http://blog.51cto.com/weiruoyu/2308660

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