您好!获取当前时间可以使用Python内置的datetime模块。以下是使用datetime模块获取当前时间的示例代码:```pythonimport datetime# 获取当前时间current_time = datetime.datetime.now()# 输出当前时间print("当前时间为:", current_time)```运行上述代码,将会输出当前的日期和时间。