引用日历模块 c:
import calendar as cprint(c.month_name[1])
import calendar as c
print(c.month_name[1])
as 关键字用于创建别名。
as
在上例中,当导入日历模块时,我们创建了一个别名 c,现在我们可以使用 c 代替 calendar 来引用日历模块。
请访问本站的 Python 模块教程 中学习更多关于模块的知识。