当前位置:网站首页>2. File operation - write
2. File operation - write
2022-07-06 08:17:00 【wwanxinghao】
1、 Pattern mode=w
# Pattern mode=w Write data to file , If the file does not exist, create a new file , If the file exists , Then empty the file and write again
f = open(' New files .txt',mode='w',encoding='utf-8')
f.write(' the weather is nice today ')
2、 Write the data in the list to the text
Be careful :1. normal open Outside the loop ,
2. The list is connected after being written to the file , It needs to be separated by carriage return
# A list is written to the file
l = ['python','java','go']
f = open(' New files .txt',mode='w',encoding='utf-8')
for i in l:
f.write(i)
f.write('\n')
3. Append write (append):a
l = ['python','java','go']
f = open(' New files .txt',mode='a',encoding='utf-8')
for i in l:
f.write(i)
4. File opening and playing need to be closed :f.close(), Not closing , When the file is large, it will consume server resources , File operation occupied , You need to wait until the program finishes running before releasing resources
边栏推荐
- "Designer universe": "benefit dimension" APEC public welfare + 2022 the latest slogan and the new platform will be launched soon | Asia Pacific Financial Media
- Erc20 token agreement
- Hill sort c language
- 22. Empty the table
- Restore backup data on S3 compatible storage with br
- On why we should program for all
- Grayscale upgrade tidb operator
- Data governance: 3 characteristics, 4 transcendence and 3 28 principles of master data
- [research materials] 2021 China online high growth white paper - Download attached
- Day29-t77 & t1726-2022-02-13-don't answer by yourself
猜你喜欢
Data governance: 3 characteristics, 4 transcendence and 3 28 principles of master data
Asia Pacific Financial Media | "APEC industry +" Western Silicon Valley invests 2trillion yuan in Chengdu Chongqing economic circle to catch up with Shanghai | stable strategy industry fund observatio
Chinese Remainder Theorem (Sun Tzu theorem) principle and template code
Asia Pacific Financial Media | designer universe | Guangdong responds to the opinions of the national development and Reform Commission. Primary school students incarnate as small community designers
matplotlib. Widgets are easy to use
21. Delete data
23. Update data
让学指针变得更简单(三)
Mex related learning
08- [istio] istio gateway, virtual service and the relationship between them
随机推荐
hcip--mpls
[untitled]
IP lab, the first weekly recheck
MFC 给列表控件发送左键单击、双击、以及右键单击消息
PHP - Common magic method (nanny level teaching)
Tidb backup and recovery introduction
Migrate data from a tidb cluster to another tidb cluster
好用的TCP-UDP_debug工具下载和使用
Entity class design for calculating age based on birthday
[t31zl intelligent video application processor data]
使用 Dumpling 备份 TiDB 集群数据到兼容 S3 的存储
Database basic commands
指针进阶---指针数组,数组指针
使用 TiDB Lightning 恢复 S3 兼容存储上的备份数据
1. Color inversion, logarithmic transformation, gamma transformation source code - miniopencv from zero
Nft智能合约发行,盲盒,公开发售技术实战--合约篇
[nonlinear control theory]9_ A series of lectures on nonlinear control theory
Step by step guide to setting NFT as an ens profile Avatar
远程存储访问授权
指针和数组笔试题解析