`
pkcb526546
  • 浏览: 14881 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
定义: def 函数名(参数列表):       函数体 eg:    def fibonacci (n):         result = []         a,b=0,1         while b<n:              result.append(b)              a,b=b,a+b          return result;     print fabonacci(1000) --------------------------------------------------------------- ...
python if 语句 格式: (必须注意 if 、elif 、 else后面均带冒号,并且语句块必须缩进)       if 表达式 :            语句块       elif 表达式:            语句块       else:            语句块   eg:    tmp = int(raw_input("please input a integer"))    if tmp < 10:        print tmp ,' < 10'    elif tmp >=10 and tmp < 20:       ...
Global site tag (gtag.js) - Google Analytics