a='aa'
>>> f=open("key.txt","w")
>>> s=str(a)
>>> f.write(s)
and still the key.txt file remains blank .. why?
|
|
|
Use
to flush the write to disk. Or, if you are done using
to flush and close the file. |
||||
|
|
|
This issue can be avoided completely by making use of the with statement:
The file will be automatically closed when the block completes. Using the with statement you need not worry about this sort of bug creeping into your code. |
|||
|
|