라벨이 file write인 게시물 표시

Writing file in Python with examples

In this post, I will use the ' with  ~  as ' function for convenience. If you use ' fileopen ' function, you have to close the file, but ' with  ~  as ' function doesn't need to do. Read file: if there is list 'abc' like ----------------------------------------------------- abc = [1,2,3,4,5] ----------------------------------------------------- The python code for writing file 'abc.txt' would be as below. ----------------------------------------------------- abc = [1,2,3,4,5] with  open ( 'abc.txt' ,  'w+' )  as  writefile:       for  i  in   range ( len (abc)):           writefile.write( '%d' % abc[i]) ----------------------------------------------------- Finally, 'abc.txt' is like this ----------------------------------------------------- 12345 ----------------------------------------------------- Thanks Ha...