Python/ref keyword import

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

<languages />

Python导入关键字

❮Python关键字

导入 datetime 模块并显示当前日期和时间:

    import datetime

x = datetime.datetime.now()
print(x)

定义和用法

The import 关键字用于导入模块。

相关页面

The from 关键词。

The as 关键词。

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

.

❮Python关键字