最新公告
  • 欢迎您光临起源地模板网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入钻石VIP
  • 怎么用python输出和输入文件及信息?

    正文概述    2020-09-06   239

    所有代码程序由自己编写后,总归是为了服务用户,因为在了解到信息时,使用编程软件,要去自动化处理这些内容,怎么做呢?一起来看下吧~

    利用语句有:input和print语句

    关于Input代码演示:

    name = input('your name:')
    gender = input('you are a boy?(y/n)')
     
    ###### 输入 ######
    your name:Jack
    you are a boy?
     
    welcome_str = 'Welcome to the matrix {prefix} {name}.'
    welcome_dic = {
        'prefix': 'Mr.' if gender == 'y' else 'Mrs',
        'name': name
    }
     
    print('authorizing...')
    print(welcome_str.format(**welcome_dic))
     
    ########## 输出 ##########
    authorizing...
    Welcome to the matrix Mr. Jack.

    input函数暂停运行,等待键盘输入,直到按下回车,输入的类型永远是字符串

    a = input()
    1
    b = input()
    2
     
    print('a + b = {}'.format(a + b))
    ########## 输出 ##############
    a + b = 12
    print('type of a is {}, type of b is {}'.format(type(a), type(b)))
    ########## 输出 ##############
    type of a is <class 'str'>, type of b is <class 'str'>
    print('a + b = {}'.format(int(a) + int(b)))
    ########## 输出 ##############
    a + b = 3

    文件输入和输出

    生产级别的 Python 代码,大部分 I/O 则来自于文件,这里有个in.text:

    Mr. Johnson had never been up in an aerophane before and he had read a lot about air accidents, so one day when a friend offered to take him for a ride in his own small phane, Mr. Johnson was very worried about accepting. Finally, however, his friend persuaded him that it was very safe, and Mr. Johnson boarded the plane.
     
    His friend started the engine and began to taxi onto the runway of the airport. Mr. Johnson had heard that the most dangerous part of a flight were the take-off and the landing, so he was extremely frightened and closed his eyes.
     
    After a minute or two he opened them again, looked out of the window of the plane, and said to his friend。
     
    "Look at those people down there. They look as small as ants, don't they?"
     
    "Those are ants," answered his friend. "We're still on the ground."

    现在读取文件:

    • 去掉所有标点和换行符,将大写变为小写

    • 合并相同的词,统计每个词出现的频率,将词频从大到小排序

    • 将结果按行输出文件out.txt

    import re
     
    # 你不用太关心这个函数
    def parse(text):
        # 使用正则表达式去除标点符号和换行符
        text = re.sub(r'[^\w ]', '', text)
     
        # 转为小写
        text = text.lower()
        
        # 生成所有单词的列表
        word_list = text.split(' ')
        
        # 去除空白单词
        word_list = filter(None, word_list)
        
        # 生成单词和词频的字典
        word_cnt = {}
        for word in word_list:
            if word not in word_cnt:
                word_cnt[word] = 0
            word_cnt[word] += 1
        
        # 按照词频排序
        sorted_word_cnt = sorted(word_cnt.items(), key=lambda kv: kv[1], reverse=True)
        
        return sorted_word_cnt
     
    with open('in.txt', 'r') as fin:
        text = fin.read()
     
    word_and_freq = parse(text)
     
    with open('out.txt', 'w') as fout:
        for word, freq in word_and_freq:
            fout.write('{} {}\n'.format(word, freq))
     
    ########## 输出 (省略较长的中间结果) ##########

    怎么用python输出和输入文件及信息?

    大家也可以根据上面代码教学,套用尝试下哦~如需更多python实用知识,点击进入起源地模板网教学中心


    起源地下载网 » 怎么用python输出和输入文件及信息?

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    模板不会安装或需要功能定制以及二次开发?
    请QQ联系我们

    发表评论

    还没有评论,快来抢沙发吧!

    如需帝国cms功能定制以及二次开发请联系我们

    联系作者

    请选择支付方式

    ×
    迅虎支付宝
    迅虎微信
    支付宝当面付
    余额支付
    ×
    微信扫码支付 0 元