您的位置:

包含python练习实例019的词条

本文目录一览:

Python中的9个代码小实例!

1、 串联比较

2、串联函数调用

3、复制列表

4、字典获取元素值

5、 按值排序字典

6、 For Else

7、列表转换为逗号分隔的字符串

8、 合并字典

9、寻找列表中最大和最小元素的索引

若有不明白的地方,请移步Python视频教程继续学习!!

求解 python 练习题

import string

def makeWordList(input_file, output_file):

    

    table = string.maketrans("", "")

    try:

        word_list = dict()

        for line in open(input_file, 'r'):

            line = line.translate(table, string.punctuation).rstrip('\r\n').split(' ')

            for word in line:

                if not word in word_list:

                    word_list[word] = 1

                else:

                    word_list[word] += 1

        f = open(output_file, 'w')

        for k,v in word_list.items():

            line = '%s %s\r\n' % (k,v)

            f.write(line)

    except:

        print input_file,'not exist'

            

            

    

makeWordList('input.txt', 'output.txt')

推荐几个适合新手练手的Python项目

《Python实战:四周实现爬虫系统》百度网盘免费下载

链接:

提取码: xbdu   

Python实战:四周实现爬虫系统