├── .gitignore ├── README.md └── lecture notes ├── 1 Intro.pdf ├── 11 Complexity_Excep_Assertion.pdf ├── 12 Rand_Unicode_File.pdf ├── 13 Pythonic.pdf ├── 14 FP_LEGB.pdf ├── 15 Multitasking_RE.pdf ├── 2 Fundamental1.pdf ├── 3 Fundamental2.pdf ├── 4 Condition_Loop_Func.pdf ├── 5 List.pdf ├── 6 Tuple_Dict_String_Set.pdf ├── 7 Recursion.pdf ├── 8 Problems.pdf └── 9_10 Class_Module.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/README.md -------------------------------------------------------------------------------- /lecture notes/1 Intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/1 Intro.pdf -------------------------------------------------------------------------------- /lecture notes/11 Complexity_Excep_Assertion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/11 Complexity_Excep_Assertion.pdf -------------------------------------------------------------------------------- /lecture notes/12 Rand_Unicode_File.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/12 Rand_Unicode_File.pdf -------------------------------------------------------------------------------- /lecture notes/13 Pythonic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/13 Pythonic.pdf -------------------------------------------------------------------------------- /lecture notes/14 FP_LEGB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/14 FP_LEGB.pdf -------------------------------------------------------------------------------- /lecture notes/15 Multitasking_RE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/15 Multitasking_RE.pdf -------------------------------------------------------------------------------- /lecture notes/2 Fundamental1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/2 Fundamental1.pdf -------------------------------------------------------------------------------- /lecture notes/3 Fundamental2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/3 Fundamental2.pdf -------------------------------------------------------------------------------- /lecture notes/4 Condition_Loop_Func.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/4 Condition_Loop_Func.pdf -------------------------------------------------------------------------------- /lecture notes/5 List.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/5 List.pdf -------------------------------------------------------------------------------- /lecture notes/6 Tuple_Dict_String_Set.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/6 Tuple_Dict_String_Set.pdf -------------------------------------------------------------------------------- /lecture notes/7 Recursion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/7 Recursion.pdf -------------------------------------------------------------------------------- /lecture notes/8 Problems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/8 Problems.pdf -------------------------------------------------------------------------------- /lecture notes/9_10 Class_Module.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichengfan/itc/HEAD/lecture notes/9_10 Class_Module.pdf --------------------------------------------------------------------------------