发布于2020-03-09 16:42 阅读(1658) 评论(0) 点赞(26) 收藏(3)
【交作业啦】
ex15.py
# 从sys软件包中取出argv这个特性
from sys import argv
script, filename = argv
txt = open(filename)
print(f"Here is your file {filename}:")
print(txt.read())
txt.close()
print("Type the filename again:")
file_again = input("> ")
txt_again = open(file_again)
print(txt_again.read())
txt_again.close()
【会话】
1 运行ex15.py
2 在python中直接打开文件
PS E:\lpthw> python ex15.py ex15_sample.txt
Here is your file ex15_sample.txt:
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.
Type the filename again:
> ex15_sample.txt
This is stuff I typed into a file.
It is really cool stuff.
Lots and lots of fun to have in here.
PS E:\lpthw> python
Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> filename = input()
ex15_sample.txt
>>> txt = open(filename)
>>> txt.read()
'This is stuff I typed into a file.\nIt is really cool stuff.\nLots and lots of fun to have in here.\n'
>>> quit()
PS E:\lpthw>
【学习心得】
1 在python提示符下使用open()打开文件,作者期望怎样实现?
2 python与c的区别:
python脚本中不需要main()函数,直接顺序执行了。不过,到目前为止,脚本中还没有出现任何函数,后面学到函数后,需要再关注下。
原文链接:https://blog.csdn.net/xiaoyuweiwei0605/article/details/104719515
作者:gg
链接:https://www.pythonheidong.com/blog/article/249019/f6f740896e6cda53b148/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!