0. 垃圾
记录一些没见过的、与其他语言不同的新特性
1. 代码块
# In python, the indentation means a new code block print("Hi") print("I am Joey") #error #Cannon start a new code block arbitrarily
2. 函数
def test_function(a,b): a=a+10 b=b+10 if(a<b): print(b, "wins!") else: print(a, "wins!")
3. 全局变量
global globalV def test_global(): global globalV globalV = 45 print("now globalV is", globalV)