说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
在 Python 中,copyright 和 credits 是两个特殊的常量,它们用于包含有关 Python 解释器版权和贡献者的信息。
这个常量包含了 Python 解释器的版权信息。它可以通过以下方式访问:
>>> copyright
Copyright (c) 2001-2023 Python Software Foundation.
All Rights Reserved.
Copyright (c) 2000 BeOpen.com.
All Rights Reserved.
Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All Rights Reserved.
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.
All Rights Reserved.
这将打印出 Python 解释器的版权信息。
这个常量包含了 Python 解释器的贡献者列表。它可以通过以下方式访问:
>>> credits
Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
for supporting Python development. See www.python.org for more information.
这将打印出 Python 解释器的贡献者列表。
这两个常量提供了对 Python 解释器的版权和贡献者信息的访问,以便用户可以了解 Python 的版权归属和社区贡献者的贡献情况。
更新时间:April 12, 2024, 3:42 p.m. 标签:python copyright credits 版权