码迷,mamicode.com
首页 > 编程语言 > 详细

python中sys模块的argv

时间:2019-01-01 23:52:32      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:you   final   NPU   使用   数据   close   wan   print   cat   

"""笨办法学python,启动时在命令行中python 脚本文件名 filename"""
from sys import argv

# argv - 命令行参数; argv[0]是脚本路径名python,sys.argv[0]表示脚本路径名
script, filename = argv # 脚本和文件名称
print("We‘re going to erase %r." % filename) # 正常使用%s,在这里%r是为了重现它代表的对象
print("If you don‘t want that, hit RETURN-C (^C).")
print("If you do want that, hit RETURN.")
input("?") # 单纯的?号
print("Opening the file...")
target = open(filename, "w") # 以"w"写入的形式打开文件,a表示追加,r表示读取。不写默认是读取操作
print("Truncating the file. Goodbye!")
target.truncate() # 清除之前的数据
print("Now I‘m going to ask you for three lines.")
line1 = input("line 1: ") # 获取用户输入
line2 = input("line 2: ")
line3 = input("line 3: ")
print("I‘m going to write these to the file.")
target.write(line1) # 写入用户输入
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
print("And finally, we close it.")
target.close() # 关闭已打开的文件

python中sys模块的argv

标签:you   final   NPU   使用   数据   close   wan   print   cat   

原文地址:https://www.cnblogs.com/Guishuzhe/p/10206384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!