pushing using magit yay
This commit is contained in:
parent
d2e57f15f2
commit
b4071ec660
14 changed files with 355 additions and 0 deletions
41
sami/learn-python-the-hard-way/ex16.py
Normal file
41
sami/learn-python-the-hard-way/ex16.py
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
|
||||
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')
|
||||
|
||||
print("Truncating the file.
|
||||
target.truncate()
|
||||
|
||||
Goodbye!")
|
||||
|
||||
|
||||
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(line1)
|
||||
target.write("\n")
|
||||
target.write(line2)
|
||||
target.write("\n")
|
||||
target.write(line3)
|
||||
target.write("\n")
|
||||
|
||||
print("And finally, we close it.")
|
||||
|
||||
target.close()
|
||||
Loading…
Add table
Add a link
Reference in a new issue