19 lines
259 B
Python
19 lines
259 B
Python
from sys import argv
|
|
|
|
script, filename = argv
|
|
|
|
txt = open(filename)
|
|
|
|
|
|
print(f"Here's your file {filename}: ")
|
|
print(txt.read())
|
|
|
|
txt.close()
|
|
|
|
print("Type the filename again : ")
|
|
file_again = input("> ")
|
|
|
|
txt_again = open(file_again)
|
|
|
|
print(txt_again.read())
|
|
|