python 写入d盘文件(python文件写入write的操作)
类别:脚本大全 浏览量:592
时间:2021-09-30 00:56:12 python 写入d盘文件
python文件写入write的操作本文实例为大家分享了python文件写入write()的操作的具体代码,供大家参考,具体内容如下
|
filename = 'pragramming.txt' with open (filename, 'w' ) as fileobject: #使用‘w'来提醒python用写入的方式打开 fileobject.write( 'i love your name!' '\ni love your cloth!' '\ni love your shoes!' '\ni love your hair!' ) with open (filename, 'a' ) as fileobject: #使用‘a'来提醒python用附加模式的方式打开 fileobject.write( '\ni an superman.' ) |
代码中的filename如果没有这个文件,python会自己新建一个。
json文件的写入和读取:
|
import json filename = 'number.json' def write_json(): numbers = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ] with open (filename, 'w' ) as fp: json.dump(numbers,fp) #写入json文件 write_json() def read_json(): with open (filename) as pf: numbers = json.load(pf) #读取json文件 print (numbers) read_json() |
训练:
|
import json def remember_me(): active = true while active: for i in range ( 5 ): if i < 4 : username = input ( 'please enter your name:' ) filename = 'name.json' with open (filename, 'w' ) as fp: #以w的方式打开写入时会覆盖原有记录,而以a打开不会 json.dump(username,fp) print ( 'hello! ' + username.title()) else : active = false remember_me() |
以上所述是小编给大家介绍的python文件写入write()的操作详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对开心学习网网站的支持!
原文链接:https://blog.csdn.net/qq_27492735/article/details/78596412
您可能感兴趣
- 如何去阿里云解析域名(利用Python+阿里云实现DDNS动态域名解析的方法)
- 从零开始学activemq(ActiveMQ:使用Python访问ActiveMQ的方法)
- python如何读取文件(Python从文件中读取数据的方法讲解)
- python将一个字符串逆序输出(Python字符串逆序输出的实例讲解)
- python编程ide工具(这6款Python IDE&代码编辑器,你都用过吗?)
- pythondict排序原理(Python标准库使用OrderedDict类的实例讲解)
- python对于gbk处理(Python 2/3下处理cjk编码的zip文件的方法)
- 聊天室python小程序(用Python写一个模拟qq聊天小程序的代码实例)
- 超简单使用Python换脸实例(超简单使用Python换脸实例)
- python中迭代器的作用(Python3.5迭代器与生成器用法实例分析)
- python 正则表达式语法大全(python re库的正则表达式入门学习教程)
- python图文生成器(Python生成器的使用方法和示例代码)
- python配合docker(Docker构建python Flask+ nginx+uwsgi容器)
- python程序开发过程(python调用外部程序的实操步骤)
- python核心编程内容(顶级大神Linux,Python,Go,PHP之父谁是夜猫子?用Python揭秘!)
- elasticsearch数据写入原理(Python对ElasticSearch获取数据及操作)
- 红色代表什么(红色代表什么寓意)
- 蓝天代表什么(蓝天代表什么生肖)
- 今天要吃什么(今天要吃什么菜)
- 营养餐是什么(学校营养餐是什么)
- 谁说女子不如男 范冰冰演的武则天只是其一,另外两位你认识吗(谁说女子不如男)
- 杯酒人生---瓦伦丁酒杯和奥丁格啤酒(杯酒人生---瓦伦丁酒杯和奥丁格啤酒)
热门推荐
- vmwareesxi7教程(VMware ESXi安装使用记录附下载)
- 阿里云轻量服务器使用教程(阿里云轻量型服务器重新安装不自带应用的操作系统)
- phpstudy创建网站教程(使用phpstudy中域名管理菜单创建本地站点图文)
- jpg、png、gif图片格式的介绍
- iis服务器ftp设置(在云服务器上使用iis搭建一个ftp站点的方法图解)
- centos7可以装mysql吗(详解腾讯云CentOS7.0使用yum安装mysql及使用遇到的问题)
- CSS中overflow的用法
- CSS3 border-radius实现边框圆角
- js分号的使用
- mysql中基本语句(MySQL中explain语句的基本使用教程)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9