在Python中,我们可以使用datetime模块中的datetime类来获取当前时间,并使用strftime方法将其转换为字符串。下面是一个简单的示例代码: importdatetime# 获取当前时间current_time=datetime.datetime.now()# 将当前时间转换为字符串time_str=current_time.strftime("%Y-%m-%d %H:%M:%S")print("当前时间:",time_str) ...