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

Python3-file

时间:2019-03-29 09:12:33      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:not   甜美   终端   read   dream   pycharm   for   系统调用   Once   

对文件操作流程

  1. 打开文件,得到文件句柄并赋值给一个变量
  2. 通过句柄对文件进行操作
  3. 关闭文件 

 现有文件如下 

    

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Somehow, it seems the love I knew was always the most destructive kind
不知为何,我经历的爱情总是最具毁灭性的的那种
Yesterday when I was young
昨日当我年少轻狂
The taste of life was sweet
生命的滋味是甜的
As rain upon my tongue
就如舌尖上的雨露
I teased at life as if it were a foolish game
我戏弄生命 视其为愚蠢的游戏
The way the evening breeze
就如夜晚的微风
May tease the candle flame
逗弄蜡烛的火苗
The thousand dreams I dreamed
我曾千万次梦见
The splendid things I planned
那些我计划的绚丽蓝图
I always built to last on weak and shifting sand
但我总是将之建筑在易逝的流沙上
I lived by night and shunned the naked light of day
我夜夜笙歌 逃避白昼赤裸的阳光
And only now I see how the time ran away
事到如今我才看清岁月是如何匆匆流逝
Yesterday when I was young
昨日当我年少轻狂
So many lovely songs were waiting to be sung
有那么多甜美的曲儿等我歌唱
So many wild pleasures lay in store for me
有那么多肆意的快乐等我享受
And so much pain my eyes refused to see
还有那么多痛苦 我的双眼却视而不见
I ran so fast that time and youth at last ran out
我飞快地奔走 最终时光与青春消逝殆尽
I never stopped to think what life was all about
我从未停下脚步去思考生命的意义
And every conversation that I can now recall
如今回想起的所有对话
Concerned itself with me and nothing else at all
除了和我相关的 什么都记不得了
The game of love I played with arrogance and pride
我用自负和傲慢玩着爱情的游戏
And every flame I lit too quickly, quickly died
所有我点燃的火焰都熄灭得太快
The friends I made all somehow seemed to slip away
所有我交的朋友似乎都不知不觉地离开了
And only now I‘m left alone to end the play, yeah
只剩我一个人在台上来结束这场闹剧
Oh, yesterday when I was young
噢 昨日当我年少轻狂
So many, many songs were waiting to be sung
有那么那么多甜美的曲儿等我歌唱
So many wild pleasures lay in store for me
有那么多肆意的快乐等我享受
And so much pain my eyes refused to see
还有那么多痛苦 我的双眼却视而不见
There are so many songs in me that won‘t be sung
我有太多歌曲永远不会被唱起
I feel the bitter taste of tears upon my tongue
我尝到了舌尖泪水的苦涩滋味
The time has come for me to pay for yesterday
终于到了付出代价的时间 为了昨日
When I was young
当我年少轻狂

 

       本自学资料 来源@金角大王博主 (https://www.cnblogs.com/alex3714/) 

# Author:jw

#打开文件 只读 编码方式utf-8
#f=open("yesterday","r",encoding="utf-8")
#print(f.read())
‘‘‘
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 106: illegal multibyte sequence
pycharm 通过操作系统打开 调用sys 系统默认gbk编码,所以这里指定要指定utf-8编码
‘‘‘


#只写
#f=open("yesterday","w",encoding="utf-8")
#f.write("我爱北京天安门\n")
#f.write("天安门太阳升\n")
‘‘‘
只写模式 会创建一个新文件 覆盖之前的所有内容
‘‘‘


‘‘‘
#读写模式
f=open("yesterday","r+",encoding="utf-8")
print(f.readline())
f.write("@@@")

此模式 以追加的方式写在内容最后

‘‘‘




‘‘‘
#写读模式一
f=open("yesterday","w+",encoding="utf-8")
f.write("123456789\n")
f.write("123456789\n")
f.write("123456789\n")
f.write("123456789\n")
print(f.tell())
f.seek(5)
print(f.tell())
f.write(("@@@"))
print(f.tell())
f.close()

此模式 覆盖原内容 写入新类容 在指定的指针后退位的方式覆盖追写
‘‘‘


‘‘‘
#写读模式二:
f=open("yesterday","w+",encoding="utf-8")
f.write("123456789\n")
f.write("123456789\n")
f.write("123456789\n")
f.write("123456789\n")
print(f.tell())
f.seek(5)
print(f.tell())
print(f.readline())
f.write(("should be at ..."))
f.close()

写读模式中 写的方法在读的方法后 则所写的内容 追加在最后写
‘‘‘

‘‘‘
源文件内容:
----------diao----------
----------diao----------
----------diao----------
----------diao------111----
should be at ...

f=open("yesterday","rb",) #文件句柄 二进制文件 应用场景:网络传输
print(f.readline())

#b‘----------diao----------\r\n‘
b:byte
\r\n:windows上的格式

‘‘‘


‘‘‘
f=open("yesterday","wb",) #文件句柄 二进制文件 应用场景:网络传输
msg="我爱北京天安门"
f.write(msg.encode(encoding=‘utf-8‘))

‘‘‘



#相关方法演练:
‘‘‘
f=open("yesterday","r+",encoding="utf-8")
print(f.read())#读文件
print(f.tell())#统计文件内容有多少个字符
print(f.seek(5))#设置指针的位置
print(f.readline())#读一行
#print(f.close())#关闭
#print(f.closed)#判断是否关闭
print(f.encoding)#编码
print(f.name)#文件名
print(f.isatty())#判断是否是一个终端 如打印机 此在底层交互时用到
print(f.fileno())#判断是否是一个文件对象 此3 对应 操作系统调用io 管理文件的序列号 类似
print(f.newlines)#换行??
print(f.writable())#是否可写
print(f.readable())#可读的
print(f.seekable())#判断是否可设置指针 像tty文件 终端设备文件,光标是移不回去的,在linux上一切皆为文件, 如果是字符串 普通二进制,seekable可以移动 返回True
print(f.truncate(3))#在读写的模式下 截取指定的指针位置
‘‘‘
#小扩展 进度条程序
import sys,time
for i in range(10):
sys.stdout.write("#")
sys.stdout.flush()
time.sleep(1)

 

Python3-file

标签:not   甜美   终端   read   dream   pycharm   for   系统调用   Once   

原文地址:https://www.cnblogs.com/gbconcon/p/10618851.html

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