In python programming language, make a program that reads a file given as a command line argument. Then print the file with line numbers. code example
Example: python read file
with open("file.txt", "r") as txt_file:
return txt_file.readlines()
with open("file.txt", "r") as txt_file:
return txt_file.readlines()