摘要:
 阅读全文
摘要:
   None None >>> print(print(1), print(2)) 1 2 None None # execute two print expressions >>> var = print(1) >>> var + 4 Type Error! 阅读全文
摘要:
expression >>>max(2, 3) 3 >>>min(2, 3) 2 >>>from operator import add, mul >>>add(2, 3) 5 >>>mul(2, 3) 6 >>>mul(add(2, 9), mul(3, 4)) 132 Types of Expr 阅读全文
摘要:
3/14 练习记录 toprock 现在主要练律动和转圈。平衡感不是很好,以右脚为轴转老是不稳。还有以后看有教学的视频,直接看动作是真心学不会,还耽误时间。现在就是要去找教学视频了,尽量多学Sarah 和 Indian Step的一些变式。 footwork CC做的还是不好,干脆找队长吧。 现在就 阅读全文
摘要:
How to download vip songs In our life, music is associated with us closely. However, sometimes we will find our favourite song needs vip, which causes 阅读全文
摘要:
基本类型 目前讨论了int和float,以及_Bool 整数类型 有符号整数和无符号整数,目前可以回避无符号整数 6种基本组合类型: short int unsigned short int int unsigned int long unsigned long int 注: 说明符的顺序不影响。u 阅读全文
摘要:
循环 while语句 int i = 10; while (i > 0) { printf("hello\n"); i--; } /** 如何判断循环次数 i = 10可以执行 i = 1 可以执行 i = 0 不执行 1-10共执行10次 */ 无限循环 while (1) do语句 至少执行一次 阅读全文
摘要:
选择语句 从本章开始,笔记就不记得那么细了,理解为主 后面的重要章节会认真学习 关系运算符优先级低于算术运算符,左结合 判等运算符优先级低于关系运算符 &&和||具有短路特性 i > 0 && ++j > 0 中 j不一定自增 条件运算符 唯一一个三位运算符 expression1 ? expres 阅读全文