Skip to content
Advertisement

passing file path as command line parameter in python

I need to write something into files, which I am passing through command line in python. I am using the below code mycode.py

JavaScript

When I execute it, the file is not written, but when I hardcode path as

JavaScript

the file is being written, Please let me know if I am missing anything.

One more requirement is I have to pass only the directory in open, and append some file name. For example: I can pass

C:UsersvenkatDesktoppython, sam.csv

I have to append to the directory in code.

Advertisement

Answer

You should use the path variable’s value.

Replace

JavaScript

with

JavaScript

If you want to append one file to a directory path, you could use os package.

JavaScript
Advertisement