博客文章统计
截止2025年05月22日,已发布 97 篇文章
Python3报错:from StringIO import StringIO ModuleNotFoundError: No module named 'StringIO' - Cesii Blog
文章目录

Python3报错:from StringIO import StringIO ModuleNotFoundError: No module named 'StringIO'

2024-11-04 22:23 398

在 Python 3 中,StringIO 模块已经被移到了 io 模块中。在 Python 2 中,StringIO 是一个独立的模块,
如果用的 Python 3版本,编辑.py文件,将文件中的from StringIO import StringIO改为from io import StringIO