Python from 关键字

实例

仅从 datetime 模块中导入时间部分,然后将时间打印为 15:00:

  1. from datetime import time
  2. x = time(hour=15)
  3. print(x)

定义和用法

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


相关页面

import 关键字

as 关键字

请访问本站的 Python 模块 教程中学习更多有关模块的知识。

分类导航