Home / Python Files / How to Create a New File in Python In this example we will show how to create a new file if it does not exist in Python. Source Code f = open("filename.txt", "w") Output: It will create a file if the specified file does not exist.