Python3写入文件常用方法实例分析

作者:皮蛋 时间:2023-08-24 14:44:53 

本文实例讲述了Python3写入文件常用方法。分享给大家供大家参考。具体如下:


'''''
Created on Dec 18, 2012
写入文件
@author: liury_lab
'''
# 最简单的方法
all_the_text = 'hello python'
open('d:/text.txt', 'w').write(all_the_text)
all_the_data = b'abcd1234'
open('d:/data.txt', 'wb').write(all_the_data)
# 更好的办法
file_object = open('d:/text.txt', 'w')
file_object.write(all_the_text)
file_object.close()
# 分段写入
list_of_text_strings = ['hello', 'python', 'hello', 'world']
file_object = open('d:/text.txt', 'w')
for string in list_of_text_strings:
 file_object.writelines(string)
list_of_text_strings = ['hello', 'python', 'hello', 'world']
file_object = open('d:/text.txt', 'w')
file_object.writelines(list_of_text_strings)

希望本文所述对大家的Python程序设计有所帮助。

标签:Python,写入,文件
0
投稿

猜你喜欢

  • MySQL 视图,第1349号错误

    2008-05-18 13:04:00
  • 24种编程语言的Hello World程序

    2023-12-18 22:59:01
  • python如何创建TCP服务端和客户端

    2021-05-20 04:52:52
  • python爬虫爬取淘宝商品信息(selenum+phontomjs)

    2022-07-07 05:40:52
  • python Dataframe 合并与去重详情

    2022-08-17 02:18:54
  • python ftp 按目录结构上传下载的实现代码

    2021-01-28 00:38:33
  • MySQL使用变量实现各种排序

    2024-01-22 10:36:14
  • Python爬虫教程知识点总结

    2023-10-01 15:27:16
  • Python寻找路径和查找文件路径的示例

    2023-05-01 10:36:37
  • asp下通过HTTP_USER_AGENT判断用户是从手机上访问,还是电脑IE上访问

    2011-02-24 11:00:00
  • Python序列对象与String类型内置方法详解

    2023-09-22 13:25:18
  • Python 将json序列化后的字符串转换成字典(推荐)

    2021-11-17 12:36:51
  • ndarray的转置(numpy.transpose()与A.T命令对比分析)

    2023-11-13 05:57:27
  • 详解Selenium 元素定位和WebDriver常用方法

    2021-10-05 01:45:14
  • Python实现ATM简单功能的示例详解

    2021-07-17 12:06:46
  • Vue中列表渲染指令v-for的基本用法详解

    2024-05-28 15:52:06
  • python中可以声明变量类型吗

    2022-02-13 19:44:05
  • 使用python flask框架开发图片上传接口的案例详解

    2021-12-26 05:54:30
  • Three.js利用orbit controls插件(轨道控制)控制模型交互动作详解

    2024-05-22 10:31:00
  • 基于Python编写简易文字语音转换器

    2023-12-28 19:24:54
  • asp之家 网络编程 m.aspxhome.com