How to create a file using Python?

Configurare noua (How To)

Situatie

To create a new file in Python, use the open() method, with one of the following parameters:

"x" – Create – will create a file, returns an error if the file exist

"a" – Append – will create a file if the specified file does not exist

"w" – Write – will create a file if the specified file does not exist

Solutie

Pasi de urmat

 

Create a file called “myfile.txt”:

f = open(“myfile.txt”“x”)

 

Create a new file if it does not exist:

f = open(“myfile.txt”“w”)

Tip solutie

Permanent

Voteaza

(3 din 10 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?