首页 > 编程语言 >python之文件读写

python之文件读写

时间:2022-11-12 11:23:00浏览次数:30  
标签:文件 exists python 读写 indata file close open

###
这段代码是用于读文件、写文件
###
from sys import argv
from os.path import exists

script, from_file, to_file = argv
#获取文件内容
in_file = open(from_file)
indata = in_file.read()

#将文件内容写入到目标文件
if exists(to_file) <> 0:
    open(to_file,"w").write(indata)
  
#结束
in_file.close()

1、open(),close(),write(T),exists(file)

什么时候需要close()?

当open().read()时,会自动调close(),此时不用再次close();

当in_file= open(file)时,需要使用close()关闭文件,否则容易造成文件坏

标签:文件,exists,python,读写,indata,file,close,open
From: https://www.cnblogs.com/huihuimm/p/16882974.html

相关文章

  • nodejs 遍历文件夹下所有文件
    constfs=require("fs");letfileArr=[];constdir="E:/Hbuilder-Content/7.19新增页面";main(dir);console.log(fileArr);functionmain(currentPath){......
  • Android上传文件用php接收
    废话不多说直接上代码导包implementation'com.loopj.android:android-async-http:1.4.11'http声明 <applicationandroid:usesCleartextTraffic="t......
  • 使用喜马拉雅音频下载工具,就能获得自己喜欢的音频文件!
    3亿人都听的干货,应有尽有,使用喜马拉雅音频下载工具就能获得自己喜欢的音频文件。开车下班的路上遇到堵车没事干,干家务时感觉很无聊,跑步觉得太单调?有声小说、相声评书、知......
  • python的字典
    语法字典是通过{}来表示的,每一条数据都是一个键值对(key:value),每个元素之间使用逗号隔开字典中的键:只能是不可变类型的数据,一般情况下都是使用字符串来作为字典的键注......
  • Python String Slicing
    StringsandCharacterDatainPython StringSlicingPythonalsoallowsaformofindexingsyntaxthatextractssubstringsfromastring,knownasstringsl......
  • C++多媒体文件管理及检索系统
    C++多媒体文件管理及检索系统程序设计题1:多媒体文件管理及检索系统出题人:刘林峰面向专业:广播电视工程难度等级:41问题描述建立一个多媒体文件信息管理系统,包括对各......
  • python 某猫投诉加密解析
    importhashlibimportjsonimportrandomimporttimeimportrequestssha256=hashlib.sha256()'''某猫投诉https://jiangsu.tousu.sina.com.cn/'''classBlackCatComplain......
  • 元进Python(4)---networkx制作我最喜爱55部美剧天体排名
    利用networkx和matplotlib给我最喜爱的55部美剧来个天体排名【最终呈现效果】【代码实现及注释】importnetworkxasnximportmatplotlib.pyplotaspltUSTVNode=['Everybo......
  • 统计开始目录及其子目录下的指定类型文件中的单词(使用多线程、并发多线程(mappedReduce
    #include<QList>#include<QMap>#include<QTextStream>#include<QString>#include<QStringList>#include<QDir>#include<QElapsedTimer>#include<QApplicati......
  • ElfReader-Elf文件类型
    ElfReader-Elf文件类型参考文献链接https://github.com/jianhong-li/ElfReaderhttps://www.cnblogs.com/lwyeric/p/13582022.htmlELF文件解析程序说明:用Java解析E......