Answers for "Write a method that will accept a command line argument and use it to create a text file and write to it. If there are no errors, it should print "Done!" in the console."

3

how to get command line arguments in python

#!/usr/bin/python

import sys

print 'Number of arguments:', len(sys.argv), 'arguments.'
print 'Argument List:', str(sys.argv)
Posted by: Guest on July-06-2020

Code answers related to "Write a method that will accept a command line argument and use it to create a text file and write to it. If there are no errors, it should print "Done!" in the console."

Python Answers by Framework

Browse Popular Code Answers by Language