python 에서 for 문장 사용

1142 단어 pythonFile
root@ubuntu:~/dongbo/tools/python/day2# vi diedai.py 
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
for i in "test.txt":
        print i,
root@ubuntu:~/dongbo/tools/python/day2# python diedai.py 
t e s t . t x t
root@ubuntu:~/dongbo/tools/python/day2#
      test.txt    ,     test.txt  。
             。
root@ubuntu:~/dongbo/tools/python/day2# cat diedai.py 
#!/usr/bin/env python
#_*_ coding:utf-8 _*_

f =  file("/root/dongbo/tools/python/day2/test.txt")
for i in f:
	print i,

root@ubuntu:~/dongbo/tools/python/day2#
root@ubuntu:~/dongbo/tools/python/day2# python diedai.py 
wo ai ni chenxiaoyandongbo
dongbo ai chenxiaoyan

아래 의 방식 은 모든 문 자 를 인쇄 하 는 것 이다.
root@ubuntu:~/dongbo/tools/python/day2# cat diedai.py 
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
f =  file("/root/dongbo/tools/python/day2/test.txt")
for i in f.readline():
print i,
root@ubuntu:~/dongbo/tools/python/day2# python diedai.py 
w o   a i   n i   c h e n x i a o y a n d o n g b o 
root@ubuntu:~/dongbo/tools/python/day2#

좋은 웹페이지 즐겨찾기