# 2to3 > 自动将 Python 2 代码转换成 Python 3. > 自 3.11 起,该模块已被弃用,并自 3.13 起被移除。 > 参考请见:. > 更多信息:. - 显示将执行的变动但不执行(dry-run): `2to3 {{路径/到/文件.py}}` - 将 Python 2 文件转化为 Python 3: `2to3 {{[-w|--write]}} {{路径/到/文件.py}}` - 将 Python 2 语言特性转化为 Python 3: `2to3 {{[-w|--write]}} {{路径/到/文件.py}} {{[-f|--fix]}} {{raw_input}} {{[-f|--fix]}} {{print}}` - 除了某个语言特性外将所有其他的 Python 2 语言特性转化为 Python 3: `2to3 {{[-w|--write]}} {{路径/到/文件.py}} {{[-x|--nofix]}} {{has_key}} {{[-x|--nofix]}} {{isinstance}}` - 列出 Python 2 所有可转化为 Python 3 的语言特性: `2to3 {{[-l|--list-fixes]}}` - 将某一文件夹的所有 Python 2 文件转化为 Python 3: `2to3 {{[-o|--output-dir]}} {{路径/到/Python 3 目录}} {{[-W|--write-unchanged-files]}} {{[-n|--nobackups]}} {{路径/到/Python 2 目录}}` - 使用多线程运行 2to3: `2to3 {{[-j|--processes]}} {{4}} {{[-o|--output-dir]}} {{路径/到/Python 3 目录}} {{[-w|--write]}} {{[-n|--nobackups]}} --no-diffs {{路径/到/Python 2 目录}}`