- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是《艰难学习Python》练习中的一个问题。练习是将一个文件复制到另一个文件,我工作得很好,但我想稍微扩展代码以打印刚刚写入的文件。这是代码:
from sys import argv
from os.path import exists
script, from_file, to_file = argv
print(f"Copying from {from_file} to {to_file}")
#creates a variable called "in_file" from the argv "from_file", opens it and reads it.
in_file = open(from_file).read()
print(f"The contents of 'from_file' is:\n {in_file}")
print(f"The input file is {len(in_file)} bytes long")
print(f"Does the output file exist? {exists(to_file)}")
print(f"Ready, hit RETURN to contiune, CTRC-C to abort")
input(">")
#creates variable "out_file" and opens the "to file" argv 'w' means writable
out_file = open(to_file, 'w')
#writes data from "in_file to "out_file"
out_file.write(in_file)
print("Alright, all done")
#Try to print the file we wrote to
blah = open(to_file).read()
print(f"We printed: {blah}")
当我运行此脚本时,会发生以下情况:
$ python3 ex17.py test.text new_file.text
Copying from test.text to new_file.text
The contents of 'from_file' is:
This is a test file.
The input file is 21 bytes long
Does the output file exist? True
Ready, hit RETURN to contiune, CTRC-C to abort
>
Alright, all done
We printed:
所以我的问题是没有打印任何内容。如果我发现“new_file.text”,内容是正确的,但代码显然有问题,因为它根本没有打印它。
有什么建议吗?
最佳答案
我刚刚测试过。这是因为 out_file 没有关闭。在out_file.write(in_file)
中添加out_file.close()
后,当然建议您使用with
而不是打开文件。
关于python3 - 打印我刚刚写入的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54959971/
实现信息技术的自主可控,可以说是金融行业最紧迫、最重要的推进战略了。 人民银行、银保监会等主管部门密集出台文件,指导金融行业核心领域自主可控技术应用。 拿数据库来说,自主可控这事儿业内也
在methods中创建方法showtime,传入要跟当前时间要对比的时间 ?
其实这个没什么技术含量,当然就直接贴代码,不废话了, 但是在其实开发中还是蛮有用的,譬如论坛帖子,围脖等都有相关应用 复制代码代码如下: function tranTim
今天,杭州人的朋友圈都被这场晚会刷屏了 分散在全球的阿里人都回到杭州,为阿里巴巴送上20周岁的生日祝福。 阿里巴巴20周年年会,被称作“有史以来杭州规模最大的年会”,没有
在很多场合为了显示出信息的及时性,一般会将时间显示成“刚刚”,“5分钟前”,“3小时前”等,而不是直接将时间打印出来。比如微博,SNS类应用就最长用到这个功能。而一般存储在数据库中的时间格式为 Un
我是一名优秀的程序员,十分优秀!