摘要:
初次接触ObjC时,会发现许多和其它语言不同的地方,会看到很多的+,- ,[ ,] ,@, NS等符号,这些符号在以后的编程中将经常看到,这部分内容在第二节中介绍。先熟悉一下ObjC的代码:#import "ClassA.h"#import int main( int argc, const cha... 阅读全文
摘要:
#python中的calendarimport calendar#返回指定年的某月def get_month(year, month): return calendar.month(year, month)#返回指定年的日历def get_calendar(year): return c... 阅读全文