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. code example
Example: 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)