python 3 中缺少 argparse
有人知道为什么 argparse 模块没有在 python 3 中出现吗?它是 python 2.7 中的新功能,但 2.x 分支在 2.7 中已经耗尽。对我来说,不在实际的 python 3 分支中支持它是没有意义的。
does somebody know, why the argparse module didn't make it in python 3? it's new in python 2.7, but the 2.x branch is running out with 2.7. it makes no sense to me not to support it in the actual python 3 branch.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它将出现在 Python 3.2 中。它刚刚被添加到今年 7 月刚刚发布的 Python 2.7 中; Python 3.2 将是该日期之后的下一个 3.x 版本。
It will be in Python 3.2. It was just added in Python 2.7, which was released just this July; Python 3.2 will be the next 3.x release after that date.
argparse 在 Python 3 中,具体来说是 3.2。另请参阅:http://www.python.org/dev/peps/pep-0389 /
argparse is in Python 3, 3.2 to be specific. See also: http://www.python.org/dev/peps/pep-0389/