小码哥的IT人生

Python as 关键字

Python基础 2022-06-06 16:25:28小码哥的IT人生shichen

Python as 关键字

实例

引用日历模块 c:

import calendar as c
print(c.month_name[1])

完整实例:

import calendar as c
print(c.month_name[1])

定义和用法

as 关键字用于创建别名。

在上例中,当导入日历模块时,我们创建了一个别名 c,现在我们可以使用 c 代替 calendar 来引用日历模块。

相关页面

import 关键字

from 关键字

请在我们的 Python 模块教程 中学习更多关于模块的知识。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024