About 448,000 results
Open links in new tab
  1. How to create a new text file using Python - Stack Overflow

    Feb 24, 2018 · How to create a new text file using Python Asked 7 years, 9 months ago Modified 2 months ago Viewed 378k times

  2. python - Create a file if it doesn't exist - Stack Overflow

    Mar 5, 2016 · I'm trying to open a file, and if the file doesn't exist, I need to create it and open it for writing:

  3. How to create a file name with the current date & time in Python?

    A safer way to create your path, might be: folder_to_save_files = shutil.os.path.join(drive_letter, folder_name +folder_time) (also an import shutil statement can replace the import os statement )

  4. python - Create a log file - Stack Overflow

    I'm looking to create a log file for my discord bot which is built with python. I have a few set of commands which output the console through the print command, I have added a date and …

  5. python - How do I write JSON data to a file? - Stack Overflow

    How do I write JSON data stored in the dictionary data to a file? f = open ('data.json', 'wb') f.write (data) This gives the error: TypeError: must be string or buffer, not dict

  6. Creating a BAT file for python script - Stack Overflow

    Jan 1, 2011 · How can I create a simple BAT file that will run my python script located at C:\\somescript.py?

  7. python - Write a file to a directory that doesn't exist - Stack Overflow

    You need to first create the directory. The mkdir -p implementation from this answer will do just what you want. mkdir -p will create any parent directories as required, and silently do nothing if …

  8. Create empty file using python - Stack Overflow

    Closed 10 years ago. I'd like to create a file with path x using python. I've been using os.system(y) where y = 'touch %s' % (x). I've looked for a non-directory version of os.mkdir, but I haven't …

  9. python - Automatically creating directories with file output - Stack ...

    Automatically creating directories with file output [duplicate] Asked 13 years, 2 months ago Modified 3 years, 3 months ago Viewed 541k times

  10. python - How do I copy a file? - Stack Overflow

    How do I copy a file in Python?copy2(src,dst) is often more useful than copyfile(src,dst) because: it allows dst to be a directory (instead of the complete target filename), in which case the …