- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeTextFile1.py
More file actions
Latest commit
32 lines (26 loc) · 684 Bytes
/
Copy pathmakeTextFile1.py
File metadata and controls
32 lines (26 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
'makeTextFile.py -- create text file'
importos
ls=os.linesep
# get filename
whileTrue:
fname=raw_input('Enter file name: ')
ifos.path.exists(fname):
print"*** ERROR: '%s' already exists"%fname
else:
break
# get file content (text) lines
all= []
print"\nEnter lines ('.' by itself to quit).\n"
# loop until user terminates input
whileTrue:
entry=raw_input('> ')
ifentry=='.':
break
else:
all.append(entry)
# write lines to file with proper line-ending
fobj=open(fname, 'w')
fobj.writelines(['%s%s'% (x, ls) forxinall])
fobj.close()
print'DONE!'