-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex16.py
More file actions
43 lines (33 loc) · 1.12 KB
/
ex16.py
File metadata and controls
43 lines (33 loc) · 1.12 KB
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
from sys import argv
script, filename = argv
print ("We're going to erase %r." % filename)
print ("If you don't want that, hit CTRL-C (^C)")
print ("if you do want that, hit RETURN")
# Technically you could type anything here, as long as you give it a EOF (^D)
# or press return it will continue.
input("?")
# Opens or creates the file specified
print ("Opening the file...")
target = open(filename, 'w')
# Truncates the file.
# Study Drill 5: Truncate is not needed as read() with 'w' parameter will
# automatically truncate the file.
print ("Truncating the file. Goodbye!")
target.truncate()
print ("Now I'm going to ask you for three lines.")
# Prompts users for lines
line1 = input("line 1: ")
line2 = input("line 2: ")
line3 = input("line 3: ")
# Writes each given line followed by a newline (\n)
# Original way of writing the lines to the file:
#target.write(line1)
#target.write("\n")
#target.write(line2)
#target.write("\n")
#target.write(line3)
#target.write("\n")
# Study Drill 3: Writing all lines and newlines to the file
target.write("%s\n%s\n%s\n" % (line1, line2, line3))
print ("And finally, we clost it.")
target.close()