摘要:
引入模块的方式: 1. import 模块 2. from xxx import 模块 collections模块 1.Counter 计数器 from collections import Counter s = 'apple pineapple' nb = Counter(s) #Counter 阅读全文
posted @ 2019-01-02 21:12 GraceNana 阅读(174) 评论(0) 推荐(0) 编辑
摘要:
引入模块的方式: 1. import 模块 2. from xxx import 模块 collections模块 1.Counter 计数器 from collections import Counter s = 'apple pineapple' nb = Counter(s) #Counter 阅读全文
posted @ 2019-01-02 21:12 GraceNana 阅读(174) 评论(0) 推荐(0) 编辑
摘要:
try...except...else...finally... try: """操作""" except Exception as e: """异常的父类,可以捕获所有的异常""" else: """保护不抛出异常的代码, 当try中无异常的时候执行""" finally: """最后总要执行的" 阅读全文
posted @ 2019-01-02 20:54 GraceNana 阅读(251) 评论(0) 推荐(0) 编辑 |
||