Python/ref keyword from

来自菜鸟教程
跳转至:导航、​搜索

<languages />

关键字的Python

❮Python关键字

仅导入 time 日期时间模块中的“部分”,然后将时间打印为15:00:

    from datetime import time

x = time(hour=15)

print(x)

定义和用法

The from 关键字仅用于从模块中导入指定的部分。

相关页面

The import 关键词。

The as 关键词。

了解更多关于模块 Python模块教程

.

❮Python关键字