mirror of
https://github.com/rasbt/python_reference.git
synced 2024-11-24 04:21:15 +00:00
22 lines
320 B
Python
22 lines
320 B
Python
|
# Sebastian Raschka 2014
|
||
|
# converts a 1-col input file into csv file
|
||
|
#
|
||
|
# Example input:
|
||
|
# 123
|
||
|
# 245
|
||
|
# 453
|
||
|
#
|
||
|
# Example output:
|
||
|
# 123,245,453
|
||
|
#
|
||
|
|
||
|
|
||
|
|
||
|
out_file = open('new.csv', 'w')
|
||
|
with open('in.txt', 'r') as in_file:
|
||
|
for line in in_file:
|
||
|
line = line.strip()
|
||
|
out_file.write(line + ',')
|
||
|
out_file.close()
|
||
|
|