博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ex16.py
阅读量:6626 次
发布时间:2019-06-25

本文共 1398 字,大约阅读时间需要 4 分钟。

 
1 # -*- coding:utf-8 -*- 2  3 from sys import argv 4  5 script, filename = argv  #解包变量参数 6  7 print ("we're going to erase %r." % filename) 8 print ("if you don't want that, hit CTRL-C(^c).")   #CTRL-C的用法 9 print ("if you  do want that, hit RETURN.")   # RETURN的用法10 11 input ("?")12 13 print ("opening the file...")14 target = open(filename, 'w')  #'w'的意识是‘write’,不可写成大写,否则出现语法错误。本句为定义变量target15 16 # 学会该如何打开一个其它文件目录的文件?????17 #'r'       open for reading (default)18 #'w'       open for writing, truncating the file first 'x'   create a new file and open it for writing19 #'a'       open for writing, appending to the end of the file if it exists20 #'b'       binary mode 二进制21 #'t'       text mode (default) 文本模式22 #'+'       open a disk file for updating (reading and writing)23 #'U'       universal newline mode (deprecated)   24 25 print ("truncating the file .Goodbye!")26 #target.truncate()     #truncate()的意思是清空文件27 28 print ("Now I'm going to ask you for three lines.")29 30 line1 = input ("line 1: ")31 line2 = input ("line 2: ")32 line3 = input ("line 3: ")33 34 print ("I'm going to write these to the file.")35 36 target.write(line1) #write()的意思是写入文件37 target.write("\n")38 target.write(line2)39 target.write("\n")40 target.write(line3)41 target.write("\n")42 43 print ("And finally,we close it.")44 target.close() # 关闭文件和保存的意思
 

 

 

 

转载于:https://www.cnblogs.com/jiangzhipeng/p/6079686.html

你可能感兴趣的文章
我的开发工具包
查看>>
运维角度浅谈MySQL数据库优化
查看>>
多版本python下,安装pip
查看>>
AndroidManifest.xml文件解析
查看>>
互联网 免费的WebService接口
查看>>
【我的V日志】2010年1月29日星期五
查看>>
我的友情链接
查看>>
六种微服务架构的设计模式
查看>>
路由器配置大全
查看>>
JACK——AgentManual3 Agents
查看>>
[转载] 的士速递4
查看>>
基于QT平台的手持媒体播放器项目实战视频教程下载
查看>>
一名奔三的程序猿的困惑
查看>>
嵌入式Linux裸机开发(一)——点亮Led
查看>>
搭建Websocket简易聊天室
查看>>
Oracle技术之flashback table
查看>>
PIE SDK文本元素的绘制
查看>>
asp.net 页面传值
查看>>
解决将/etc/passwd文件中1000改为0后只能guest进入系统的问题 ||ubuntu下将普通用户权限升级为root用户权限的方法;...
查看>>
【Python实战】Scrapy豌豆荚应用市场爬虫
查看>>