摘要:
Python常用中文字体对应名称黑体 SimHei微软雅黑 Microsoft YaHei微软正黑体 Microsoft JhengHei新宋体 NSimSun新细明体 PMingLiU细明体 MingLiU标楷体 DFKai-SB仿宋 FangSong楷体 KaiTi仿宋_GB2312 FangS 阅读全文
摘要:
需求:用python绘制一个与中国传统节日有关的图像,如春节→中国结 1 import turtle as t 2 def goto(x,y): 3 t.penup() 4 t.goto(x,y) 5 t.pendown() 6 7 def init(): 8 t.setup(800,800) 9 阅读全文
摘要:
需求:用C语言实现简单万年历 #include <stdio.h> #include<stdlib.h> int year, month; int run[12] = { 31,29,31,30,31,30,31,31,30,31,30,31 }; int ping[12] = { 31,28,31 阅读全文