Python3 File read() 方法 Python3 os.chdir() 方法
Posted Red Car
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 File read() 方法 Python3 os.chdir() 方法相关的知识,希望对你有一定的参考价值。
Python3 File read() 方法
正在上传…重新上传取消 Python3 File(文件) 方法
概述
read() 方法用于从文件读取指定的字节数,如果未给定或为负则读取所有。
语法
read() 方法语法如下:
fileObject.read();
参数
-
size -- 从文件中读取的字节数。
返回值
返回从字符串中读取的字节。
实例
以下实例演示了 read() 方法的使用:
文件 youj.txt 的内容如下:
这是第一行 这是第二行 这是第三行 这是第四行 这是第五行
循环读取文件的内容:
#!/usr/bin/python3 # 打开文件 fo = open("youj.txt", "r+") print ("文件名为: ", fo.name) line = fo.read(10) print ("读取的字符串: %s" % (line)) # 关闭文件 fo.close()
以上实例输出结果为:
文件名为: youj.txt 读取的字符串: 这是第一行 这是第二
Python3 os.chdir() 方法
正在上传…重新上传取消 Python3 OS 文件/目录方法
概述
os.chdir() 方法用于改变当前工作目录到指定的路径。
语法
chdir()方法语法格式如下:
os.chdir(path)
参数
-
path -- 要切换到的新路径。
返回值
如果允许访问返回 True , 否则返回False。
实例
以下实例演示了 chdir() 方法的使用:
#!/usr/bin/python3 import os, sys path = "/tmp" # 查看当前工作目录 retval = os.getcwd() print ("当前工作目录为 %s" % retval) # 修改当前工作目录 os.chdir( path ) # 查看修改后的工作目录 retval = os.getcwd() print ("目录修改成功 %s" % retval)
执行以上程序输出结果为:
当前工作目录为 /www 目录修改成功 /tmp
python file_read.py
以上是关于Python3 File read() 方法 Python3 os.chdir() 方法的主要内容,如果未能解决你的问题,请参考以下文章
python read_compressed_file.py
Python3基础 file read 读取txt文件的前几个字符
解决raise OSError(“Truncated File Read“)OSError: Truncated File Read
解决raise OSError(“Truncated File Read“)OSError: Truncated File Read