写文件

作者: 朱兰Juran | 来源:发表于2022-06-02 08:15 被阅读0次

写文件- write 方法

要写入文件,请使用 write 方法,该方法将字符串写入文件。

例如:

file = open("newfile.txt", "w")

file.write("This has been written to a file")

file.close()

file = open("newfile.txt", "r")

print(file.read())

file.close()

结果:

This has been written to a file

“w” 模式如果文件不存在,将创建一个文件。


写文件-“w” 模式

当以写入("w")模式打开文件时,文件的现有内容会被删除。

# -*- coding: UTF-8 -*-

file = open("newfile.txt", "r")

print("读取newfile.txt")

print(file.read())

print("===结束===")

file.close()

file = open("newfile.txt", "w")

file.write("写入一些新的内容")

file.close()

file = open("newfile.txt", "r")

print("再次读取newfile.txt")

print(file.read())

print("===结束===")

file.close()

自己试试。


写文件-返回

如果写入成功的话 write 方法返回写入文件的字节数。

msg = "Hello world!"

file = open("newfile.txt", "w")

amount_written = file.write(msg)

print(amount_written)

file.close()

结果:

12

相关文章

  • 写文件

  • 写文件

    写文件时,生成的文件路径默认为代码目录下。 写文件的代码如下: #! /usr/bin/python #__*__...

  • 写文件

    read.h read.cpp

  • 写文件

    写文件-write 方法 要写入文件,请使用 write 方法,该方法将字符串写入文件。 例如: file = o...

  • 写文件-python学习24

    写文件: 写文件也是三步:打开文件——写入文件——关闭文件。 第1步:打开文件,以写入的模式打开文件。 open(...

  • go 文件操作

    File 建立File内存地址 打开文件 写文件 读文件 删除文件 判断文件是否存在 file写文件 file读文...

  • Python读写文件

    Python读写txt、csv文件 1.读文件 读入txt文件并转为数字 读入csv文件 2.写文件 写txt文件...

  • java写文件

    java语言中,使用jdk提供的方法写文件一般有三种方式,关键类分别为FileOutputStream,Buffe...

  • ios写文件

  • Python 写文件

    版权所有,未经许可,禁止转载 章节 Python 介绍Python 开发环境搭建Python 语法Python 变...

网友评论

    本文标题:写文件

    本文链接:https://www.haomeiwen.com/subject/dsafmrtx.html