-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex16.py
More file actions
32 lines (23 loc) · 754 Bytes
/
Copy pathex16.py
File metadata and controls
32 lines (23 loc) · 754 Bytes
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
from sys import argv
script, filename = argv
print(f"We're going to erase {filename}.")
print("If you don't want that, hit CTRL-C (^C).")
print("If you do want that, hit RETURN")
input("?")
print("Opening the file...")
target = open(filename, 'w')
# not needed because we opened the file with 'w'
# print("Truncating the file. Goodbye!")
# target.truncate()
print("Now I'm going to ask you for three lines.")
line1 = input("Line 1: ")
line2 = input("Line 2: ")
line3 = input("Line 3: ")
print("I'm going to write these to the file.")
target.write("{}\n{}\n{}".format(line1, line2, line3))
print("We close it.")
target.close()
print("Let's read it again")
target = open(filename)
print(target.read())
target.close()