Python编程从入门到实践笔记——文件

Python编程从入门到实践笔记——文件

复制代码
#coding=gbk
#Python编程从入门到实践笔记——文件
#10.1从文件中读取数据
#1.读取整个文件
file_name = 'pi_digits.txt'
with open(file_name) as file_object:
    contents = file_object.read()
    print(contents)
 
#关键字with在不再需要访问文件后将其关闭。
#open(path)打开文件
#read()读取整个文件的内容
 
#2.文件路径
#Linux和OS X中:with open('text_files/filename.text') as file_object:
#Windows中:with open('text_files\filename.text') as file_object:
 
#3.逐行读取
with open(file_name) as file_object:
    for line in file_object:
        print(line.rstrip())
        
#4.创建一个包含文件各行内容的列表
#readlines()从文件中读取每一行,并将其存储在一个列表中
with open(file_name) as file_object:
    lines = file_object.readlines()
    
for line in lines:
    print(line.rstrip())
 
#5.使用文件的内容
#读取文本文件时候,Python将其中的所有文本都解读为字符串。
with open(file_name) as file_object:
    lines = file_object.readlines()
 
pi_string = ''
for line in lines:
    pi_string += line.rstrip()
 
print(pi_string)
 
#6.包含一百万位的大型文件
#复习一下圆周率:3.14159265358979323846264338327950288419716939937510...
 
#7.圆周率中包含你的生日吗
birthday = input("Enter your birthday, in the form mmddyy: ")
if birthday in pi_string:
    print("Your birthday appears in the first million digits of pi!")
else:
    print("Your birthday does not appear in the first million digits of pi.")
 
 
#10.2写入文件
#1.写入空文件
#open()第一个实参是要打开的文件名称;第二个实参是要以写入模式打开这个文件。
#读取模式(’r‘)(默认)、写入模式(’w‘)、附加模式(’a‘)、读写模式(’r+‘)
#Python只能将字符串写入文本文档。要存储数值,可使用str()以后写入
file_name = 'programming.txt'
 
with open(file_name, 'w') as file_object:
    file_object.write("I love programming.")
 
#2.写入多行
#在write()语句中加入换行符’\n‘
 
#3.附加到文件
#附加模式’a‘
with open(file_name, 'a') as file_object:
    file_object.write("I love programming.\n")
    file_object.write("I love playing basketball.\n")
复制代码

 

posted @   James_Shangguan  阅读(412)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)
· AI 智能体引爆开源社区「GitHub 热点速览」
· 写一个简单的SQL生成工具
点击右上角即可分享
微信分享提示