pushing using magit yay

This commit is contained in:
samialazar 2020-05-22 16:35:56 +02:00
commit b4071ec660
14 changed files with 355 additions and 0 deletions

View file

@ -0,0 +1,18 @@
from sys import argv
script, filename = argv
txt = open(filename)
print(f"Here's your file {filename}:")
print(txt.read())
print("Type the filename again:")
file_again = input("> ")
txt_again = open(file_again)
print(txt_again.read())