python 创建、写入文件

import os
import glob

localDir = ‘F:/test/test1/‘
file_test = open(localDir + ‘file_test.txt‘,‘w‘)

os.chdir(localDir)
for file_name in glob.glob(‘*.jpg‘):
    #print (file_name)
    file_test.write( ‘test1/‘ + str(file_name) + ‘\n‘)
file_test.close()

时间: 2024-10-22 08:48:23

python 创建、写入文件的相关文章

通过python创建域名解析文件excel格式(可用来导入阿里云)

通过python创建excel文件,可导入阿里云域名解析!因工作需要编写的脚本,没啥难度,分享出来供大家参考示例代码:#!/usr/bin/env python#coding:utf-8 import xlsxwriter serverid = list(range(001,016)) ym = ".域名" iplist = ["192.168.112.100","192.168.112.101","192.168.112.102&qu

python读取写入文件方法SringIO,BytesIO

python中不仅仅可以在磁盘中写入文件,还允许直接在内存中直接写入数据:需要借助StringIO和BytesIO来实现: 1.直接操作StringIO from io import StringIO #载入对象 f=StringIO() #创建变量指向对象 f.write('hello,') #写入数据 f.write(' ') f.write('world.') print(f.getvalue()) #依次打印获得的数据 getvalue()的方法用于获取写入的str 2.初始化Strin

【Python】写入文件

1.1写入空文件 若将文本写入文件,在调用open()时候需要提供另外一个实参,告诉Python你要写入打开的文件 file_path = 'txt\MyFavoriteFruit.txt' with open(file_path,'w') as file_object: file_object.write('I like appple.') 在这个实例中,调用open()提供了两个实参,第一个实参是要打开文件的路径与名称,第二个实参('w')告诉Python,我们将要以写的方式打开这个文件 r

利用python 创建XML文件

1 #coding=utf-8 2 from xml.etree import ElementTree 3 4 import pdb 5 6 def printNodeInfo(node): 7 8 #node.tag 标签名称 9 #node.text 文本属性 10 print 'node.tag: %s' %node.tag 11 12 #node.attrib 属性字典 13 for key in node.attrib: 14 print '%s %s' %(key,node.attr

Python创建cvs文件,包含标签和图片数据

 在深度学习或者机器学习的时候,常常需要对数据进行整理和分类,最常见的是通过对数据路径和标签写入 到一个整合的txt或者csv文件中,训练进行读取. 1 #coding=utf-8 2 #!/usr/bin/env python 4 import sys 5 import os.path 6 7 # This is a tiny script to help you creating a CSV file from a face 8 # database with a similar hiera

python 字典写入文件join把列表字符拼接成新的字符串。

a1 = {'Yuan': 30000, 'Alex': 100000, 'Egon': 50000, 'Rain': 90} #定义字典 f = open("test.txt","w+",encoding="UTF-8") #打开文件 for key in a1: #循环遍历字典 a2 = (key,str(a1[key])) #把字典解析成列表 list1 = (list(a2)) #转列表 print(list1) #打印预览列表 list

解决Python 字典写入文件出行首行有空格的解决方法

模拟购物车程序,判断用户薪资是否是0 如果是0就需要输入薪资,并记录到文件内. 可以预先存个字典格式的字符串,然后去读取文件的时候读到的是字字符串然后再去用eval去转换成字典. 当我们覆盖写到文件的时候就会发现首行会有空格,当我们再去读取eval的时候就会报错,那怎么样可以解决这个问题呢! import json info = { 'lisi':0, 'zhangshan':100, } f = open('json.txt','w') f.write(json.dumps(info)) {"

python创建xml文件

本文是一个使用ElementTree有关类库,生成xml文件的例子 # *-* coding=utf-8 from xml.etree.ElementTree import ElementTree from xml.etree.ElementTree import Element from xml.etree.ElementTree import SubElement from xml.etree.ElementTree import dump from xml.etree.ElementTre

tensorflow学习之(十一)将python代码写入文件

#save to file import tensorflow as tf import numpy as np ##(1)Save to file 把相关变量存储到文件中 #remember to define the same dtype and shape when restore W = tf.Variable([[1,2,3],[3,4,5]],dtype=tf.float32,name='weights') b = tf.Variable([[1,2,3]],dtype=tf.flo

C#创建txt文件并写入内容

以注册登录为例 using System.Text; 1.注册 //注册 public string registered(string username,string password) { //判断是否已经有了这个文件 if (!System.IO.File.Exists("c:\\users\\administrator\\desktop\\webapplication1\\webapplication1\\testtxt.txt")) { //没有则创建这个文件 FileStr