python生成年月日 时分秒毫秒
时间: 2024-09-30 16:02:47 浏览: 36
把毫秒数转换为年月日时分秒
3星 · 编辑精心推荐
在Python中,你可以使用内置模块`datetime`来生成日期、时间和时间戳,包括年、月、日、时、分、秒以及毫秒。下面是一个简单的示例:
```python
from datetime import datetime
# 创建当前日期和时间
current_time = datetime.now()
# 获取年、月、日
year = current_time.year
month = current_time.month
day = current_time.day
# 获取小时、分钟、秒和毫秒
hour = current_time.hour
minute = current_time.minute
second = current_time.second
millisecond = current_time.microsecond # 毫秒需要转换,因为microsecond是微秒,1000微秒等于1毫秒
print(f"年: {year}, 月: {month}, 日: {day}")
print(f"时: {hour}, 分: {minute}, 秒: {second}, 毫秒: {millisecond // 1000}")
# 如果你想保留四位数的毫秒,可以这样计算:
# millisecond_str = f"{millisecond:04d}"
# print("毫秒(四位):", millisecond_str)
```
如果你想要的是字符串格式,可以直接使用`.strftime()`方法:
```python
formatted_time = current_time.strftime('%Y-%m-%d %H:%M:%S.%f')
print("格式化的时间:", formatted_time)
```
这里`.%f`会显示到微秒级别。
阅读全文