Introduction to Computer Science and Programming Using Python(3)
Week three: Structured Types
Introduction to Computer Science and Programming Using Python(2)
Week two: Simple Programs
Introduction to Computer Science and Programming Using Python
Week one: Introduction to Python
零基础学Python(27、28)
集合
零基础学Python(25)
字典
映射:
dict={key:value}
零基础学Python(24)
递归:汉诺塔
零基础学Python(23)
斐波那契数列:迭代 VS 递归
斐波那契数列
\[F(n) = \left\lbrace \begin{matrix} 1, 当n=1\\ 1, 当n=2\\ F(n-1)+F(n-2), 当n>2 \end{matrix} \right\rbrace\]