-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex16.py
More file actions
38 lines (27 loc) · 987 Bytes
/
ex16.py
File metadata and controls
38 lines (27 loc) · 987 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
33
34
35
36
37
38
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')
# Truncating is not needed since the file is being opened in 'w' write mode
# which automatically truncates the file. Commenting out the lines below:
# print("Truncating the file. Goodbye!")
# target.truncate()
print("Now I'm going to ask you for three line.")
line1 = input("line 1: ")
line2 = input("line 2: ")
line3 = input("line 3: ")
print("I'm going to write these to the file.")
# Reduced 6 lines into 3 using the f string format
target.write(f"{line1}\n")
target.write(f"{line2}\n")
target.write(f"{line3}\n")
# Opens the file in read mode 'r', reads the contents, then prints it out
target = open(filename, 'r')
text_in_file = target.read()
print(f"\n{text_in_file}")
print("And finally, we close it.")
target.close()