strftime函数如何使用
时间: 2023-12-30 20:02:05 浏览: 80
strftime() 函数用于格式化日期/时间,其中第一个参数为格式字符串,第二个参数为时间元组。
常用的格式字符有:
%Y: 四位数的年份
%m: 月份 (01-12)
%d: 日期 (01-31)
%H: 小时 (00-23)
%M: 分钟 (00-59)
%S: 秒 (00-59)
示例:
```python
import datetime
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出:当前年月日时分秒的格式如2022-05-20 15:25:50
```
相关问题
strftime函数
strftime函数是一种用于将日期和时间格式化为字符串的函数。它在许多编程语言中都有实现,例如C语言中的strftime函数。通过使用指定的格式字符串,strftime函数可以将日期和时间以不同的方式输出,使其易于阅读和处理。
通常,strftime函数的参数包括一个时间结构(如tm结构)和一个格式化字符串。***
如何使用strftime函数
strftime函数是一个用于将时间转换为字符串的函数,其原型为:
```c
size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr);
```
其中,参数含义如下:
- str:指向转换后的字符串缓冲区的指针。
- maxsize:缓冲区的最大长度。
- format:字符串格式。
- timeptr:指向tm结构体的指针,包含待转换的时间信息。
例如,以下代码将当前时间转换为字符串,并输出:
```c
#include <stdio.h>
#include <time.h>
int main()
{
time_t t = time(NULL);
struct tm *tm = localtime(&t);
char str[100];
strftime(str, sizeof(str), "%Y-%m-%d %H:%M:%S", tm);
printf("%s\n", str);
return 0;
}
```
输出结果类似于:
```
2022-01-01 12:00:00
```
在format参数中,%Y、%m、%d、%H、%M、%S等是格式化指令,表示年、月、日、时、分、秒等,详细指令可以参考strftime函数的文档。
阅读全文