Python 获取当前时间
时间: 2024-08-16 13:03:03 浏览: 55
在Python中,你可以使用内置的`datetime`模块来获取当前的时间。下面是一个简单的例子:
```python
from datetime import datetime
# 获取当前日期和时间
current_time = datetime.now()
print("当前时间为:", current_time)
# 只打印当前时间部分(默认格式)
print("当前时间为:", current_time.strftime("%Y-%m-%d %H:%M:%S"))
相关问题
python获取当前时间
可以使用Python内置的datetime模块来获取当前时间。代码如下:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
输出结果为:
```
当前时间为: 2021-06-18 12:34:56.789012
```
其中,now()方法返回一个datetime对象,包含当前日期和时间的信息。可以通过调用该对象的各个属性来获取具体的时间信息,例如:
```python
year = now.year
month = now.month
day = now.day
hour = now.hour
minute = now.minute
second = now.second
microsecond = now.microsecond
print("年份:", year)
print("月份:", month)
print("日期:", day)
print("小时:", hour)
print("分钟:", minute)
print("秒钟:", second)
print("微秒:", microsecond)
```
输出结果为:
```
年份: 2021
月份: 6
日期: 18
小时: 12
分钟: 34
秒钟: 56
微秒: 789012
```
python 获取当前时间
可以使用 Python 内置的 datetime 模块来获取当前时间。以下是示例代码:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now)
```
输出结果类似于:
```
当前时间: 2021-10-14 15:50:23.123456
```
你也可以使用 strftime() 方法来格式化时间输出。例如:
```python
import datetime
now = datetime.datetime.now()
print("当前时间:", now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出结果类似于:
```
当前时间: 2021-10-14 15:50:23
```
阅读全文