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



Have Fun!

댓글

이 블로그의 인기 게시물

미국 포닥, 한국으로 돌아가는 이유? (Why do postdoc go back to Korea?)

외국인 (한국인) 미국 집 구입. 영주권, 시민권 필요없다.

미국 포닥 - 비지팅 포닥 VS 풀펀딩 포닥 (Visiting Scholar VS Postdoctoral Fellow)