python中获取当前时间
时间: 2023-06-30 21:11:54 浏览: 92
在 Python 中获取当前时间可以使用 `datetime` 模块。具体来说,可以使用 `datetime` 模块中的 `datetime` 类来获取当前时间,如下所示:
```python
import datetime
now = datetime.datetime.now()
print("当前时间为:", now)
```
输出结果形如:`当前时间为: 2021-08-23 14:28:00.123456`。
此外,还可以使用 `date` 和 `time` 属性来获取当前日期和时间部分,如下所示:
```python
import datetime
now = datetime.datetime.now()
print("当前日期为:", now.date())
print("当前时间为:", now.time())
```
输出结果形如:`当前日期为: 2021-08-23` 和 `当前时间为: 14:28:00.123456`。
相关问题
如何在 Python 中获取当前时间?
在 Python 中获取当前时间可以使用 datetime 模块中的 datetime 类。可以通过以下代码获取当前时间:
```
from datetime import datetime
now = datetime.now()
print("当前时间为:", now)
```
输出结果如下:
```
当前时间为: 2022-03-11 15:34:30.123456
```
其中,now() 方法会返回一个 datetime 对象,包含了当前日期和时间的信息。你也可以通过调用该对象的各种方法来获取特定的信息,例如:
```
year = now.year
month = now.month
day = now.day
hour = now.hour
minute = now.minute
second = now.second
```
python中获取当前时间年月日时分秒
在Python中,你可以使用datetime模块来获取当前时间的年月日时分秒。你可以使用datetime.datetime.today()函数来获取当前的日期和时间。然后,你可以使用.today()函数返回的datetime对象的属性来获取年、月、日、时、分、秒的值。以下是示例代码:
```python
import datetime
today = datetime.datetime.today()
currentYear = today.year
currentMonth = today.month
currentDay = today.day
currentHour = today.hour
currentMinute = today.minute
currentSecond = today.second
```
通过上述代码,你可以得到当前时间的年、月、日、时、分、秒的数值。
阅读全文