-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex17.py
49 lines (33 loc) · 1.03 KB
/
ex17.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# coding utf-8
from sys import argv
from os.path import exists
script, from_file, to_file = argv
print "Copying from %s to %s" % (from_file, to_file)
# We could do these two on one line too, how?
in_file = open(from_file)
indata = in_file.read()
print "The input file is %d bytes long" % len(indata)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit RETURN to continue, CTRL-C to abort."
raw_input
out_file = open(to_file, 'w')
out_file.write(indata)
print "Alright, all done."
out_file.close()
in_file.close()
# 加分题
from sys import argv
from os.path import exists
script, from_file, to_file = argv
# We could do these two on one line too, how?
in_file = open(from_file)
indata = in_file.read()
print "The input file is %d bytes long" % len(indata)
print "Ready, hit RETURN to continue, CTRL-C to abort."
raw_input
out_file = open(to_file, 'w')
out_file.write(indata)
print "Alright, all done."
# 关闭和保存写入的文档
out_file.close()
in_file.close()