欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

think python

程序员文章站 2022-04-25 20:21:41
...

一、在第九章读取单词列表中:

     think python

      在命令行模式直接使用fin=open('words.txt')并不能打开,应该使用:

       think python

     我下载到了E盘相关文件夹中,修改即可。

二、9.2练习

     think python     
      自己答案: 

fin=open('E:/3python学习笔记/words.txt')
for line in fin:
    if len(line)>20:
        print(line)

      输出结果:

      think python 

      think python

       我的答案:

        think python

count=0
fin=open('E:/3python学习笔记/words.txt')
for line in fin:
    if 'e' not in line:
        print(line)
        count=count+1
>>print(count)

 

相关标签: python入门