-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex16.py
More file actions
33 lines (23 loc) · 672 Bytes
/
ex16.py
File metadata and controls
33 lines (23 loc) · 672 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
from sys import argv
script, filename = argv
print(f"I'm about to delete the file {filename}.")
print("If you don't want to erase it, press CTRL+C (^C).")
print("if you want to delete the file, press the Enter key.")
input("?")
print("Opening a file...")
target = open(filename, 'w')
print("File Cleaning.GoodBye!")
target.truncate()
print("Now I ask you three lines.")
line1 = input("line 1: ")
line2 = input("line 2: ")
line3 = input("line 3: ")
print("I will write this to a file")
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
print("And finally, I will close the file.")
target.close()