File operations 1

Posted passengerlee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了File operations 1相关的知识,希望对你有一定的参考价值。

1:只读(‘r‘ 和 ’rb‘以字节读)

f = open(d:模特主妇护士班主任.txt,mode=r,encoding=UTF-8)
 content = f.read()
 print(content)
 f.close()

相对路径

 f = open(模特主妇护士班主任,mode=r,encoding=utf-8)
 content = f.read()
 f.close()

若以rb模式,则不需encoding=.......

2:读写(‘r+‘和‘r+b‘以bytes字节读写)

 f = open(log,mode=r+,encoding=utf-8)
 print(f.read())
 f.write(大猛,小孟)
 f.close()

f = open(log,mode=r+b)
print(f.read())
f.write(大猛,小孟.encode(utf-8))
f.close()

3:只写(‘w‘和‘wb‘)

先将源文件的内容全部清除,再写。

 f = open(log,mode=w,encoding=utf-8)
 f.write(附近看到类似纠纷)
 f.close()

 f = open(log,mode=wb)
 f.write(附近看到类似纠纷.encode(utf-8))
 f.close()

4:写读

w+ , w+b 

 f = open(log,mode=w+,encoding=utf-8)
 f.write(aaa)
 f.seek(0)
 print(f.read())
 f.close()

5:追加 ‘a‘

f = open(log,mode=a,encoding=utf-8)
f.write(佳琪)
f.close()

f = open(log,mode=ab)
f.write(佳琪.encode(utf-8))
f.close()

注意:seek()--以字符定位光标位置,一个中文
字体代表3个字符,一个英文字母代表一个字符

 

6:文件操作其他功能

# obj = open(‘log‘,mode=‘r+‘,encoding=‘utf-8‘)
# content = f.read(3)  # 读出来的都是字符
# f.seek(3)  # 是按照字节定光标的位置
# f.tell() 告诉你光标的位置
# print(f.tell())
# content = f.read()
# print(content)
# f.tell()
# f.readable()  # 是否刻度
# line = f.readline()  # 一行一行的读
# line = f.readlines()  # 每一行当成列表中的一个元素,添加到list中
# f.truncate(4)
# for line in f:
#     print(line)
# f.close()


# f = open(‘log‘,mode=‘a+‘,encoding=‘utf-8‘)
# f.write(‘佳琪‘)
# count = f.tell()
# f.seek(count-9)
# print(f.read(2))
# f.close()

# with open(‘log‘,mode=‘r+‘,encoding=‘utf-8‘) as f,
#         open(‘log‘,mode=‘w+‘,encoding=‘utf-8‘) as f1:

以上是关于File operations 1的主要内容,如果未能解决你的问题,请参考以下文章

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

svn报错cleanup failed–previous operation has not finished; run cleanup if it was interrupted的解决办法(代码片段

file_operations poll function

当指针指向数组时,为啥 operator(*) 的值不起作用?

Camel FTP error:File operation failed: 150 Here comes the directory listing

这些 C++ 代码片段有啥作用?