write_file.py 90 B

1234567
  1. #!/usr/bin/env python3
  2. import sys
  3. with open(sys.argv[1], 'w') as f:
  4. f.write('Test')