Python Try Except
Posted bug_x
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Try Except相关的知识,希望对你有一定的参考价值。
Python Try: Except
Except 类型一: try: file_size = os.path.getsize(‘maoyan.csv‘); except OSError as err: name = [‘评论日期‘, ‘评论者昵称‘, ‘性别‘, ‘所在城市‘, ‘猫眼等级‘, ‘评分‘, ‘评论内容‘] # 建立DataFrame对象 file_test = pd.DataFrame(columns=name, data=list_info) # 数据写入 file_test.to_csv(‘maoyan.csv‘, encoding=‘utf_8_sig‘, index=False)
以上是关于Python Try Except的主要内容,如果未能解决你的问题,请参考以下文章