'''Created on 2018年10月28日递归函数示例:阶乘'''def my_fun_example1(n): ''' 非递归函数求阶乘示例 ''' result = n for i in range(1,n): result *= i return resultdef my_fun_example2(n): ''' 递归函数求阶乘示例 ''' if n == 1: return 1 else…
1.三目运算符 对简单的条件语句,可以用三元运算简写.三元运算只能写在一行代码里面 # 书写格式 result = 值1 if 条件 else 值2 # 如果条件成立,那么将 "值1" 赋值给result变量,否则,将"值2"赋值给result变量 result = 'the result if the if succeeds' if True else 'the result if the if fails and falls to the else part'…