Python 官方文档:入门教程 => 点击学习
脚本很短,不过它会让你对于文件操作有更多的了解代码如下# coding: utf-8 __author__ = 'www.py3study.com' from sys&nbs
脚本很短,不过它会让你对于文件操作有更多的了解
代码如下
# coding: utf-8
__author__ = 'www.py3study.com'
from sys import argv
from os.path import exists
script, from_file, to_file = argv
print("Copying from {} to {}".fORMat(from_file, to_file))
in_file = open(from_file)
indata = in_file.read()
print("The input file is {} bytes long".format(len(indata)))
print("Does the output file exist ? {}".format(exists(to_file)))
print("Ready, hit return to continue, CTRL-C to about.")
input()
out_file = open(to_file, 'w')
out_file.write(indata)
print("Alright, all done.")
out_file.close()
in_file.close()
import了又一个很好用的命令exists,这个命令将文件名字符串作为参数,如果文件存在的话,它将返回True,否则将返回False
通过使用import,你可以在自己代码中直接使用其它更厉害的程序员写的大量免费代码,这样你就不需要重写一遍了
应该看到的结果
常见问题
为什么'w'要放括号中?
因为这是一个字符串,表示写的意思
len()函数的功能是什么?
它会以数字的形式返回你传递的字符串长度
--结束END--
本文标题: 习题17:更多文件操作
本文链接: https://lsjlt.com/news/178880.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0