mirror of
https://github.com/logos-storage/deluge.git
synced 2026-05-04 08:33:09 +00:00
9 lines
171 B
Python
9 lines
171 B
Python
|
|
#!/usr/bin/env python2.4
|
||
|
|
|
||
|
|
fileob = open('xxx','w')
|
||
|
|
while True:
|
||
|
|
data = raw_input('Enter some text:')
|
||
|
|
fileob.seek(0)
|
||
|
|
fileob.write(data)
|
||
|
|
fileob.truncate()
|
||
|
|
fileob.flush()
|