strftime("%A");怎么输出中文版的星期几

蒂菲尔_805 |浏览161次
收藏|2022/03/18 21:27

满意回答

2022/03/18 21:39

创建一个数字对照中文的字典例如:num_to_chinese = {x: y for x y in zip(range(ord('0'), ord('6') + 1), ['一', '二', '三', '四', '五', '六', '日])}然后把strftime后的时间当做键,求值print(num_to_chose[time])再打印出来,就可以了

360U3148877120

其他回答(1)
  • 这个与你的系统环境及编译器有关,若你的系统为中文且区域设置为中国,以下程序,大多编译器能输出中文的星期#include<stdio.h>#include <time.h>#include <locale.h>int main(){ char str[20]; time_t secs_now; struct tm *time_now;char *p;p=setlocale(LC_ALL, "");printf("%s\n",p); time(&secs_now); time_now = localtime(&secs_now); strftime(str, 80, "%A", time_now);printf("%s\n",str); return 0;}测试:一。vc++2022二。C++bulder(RAD Studio 11)三,gcc(Rev2, Built by MSYS2 project) 10.3.0它不能直接输出,但实际的确有结果(用more)
    回答于 2022/03/18 22:03
0人关注该问题
+1

 加载中...