python2.x学习笔记

变量和常量

分支判断

数据结构

list

list的累加运算很简单

L=[1,3,5]
print sum(L)#输出为9

tunple

dict

set


循环

while循环

#!/usr/bin/env python
#this while loop calculates the sum of 0 through 9 (including 9)  
# and places it in the variable "sum"
 
sum=0
i=0
while i<10:
   sum=sum+i
   i=i+1
print "sum is ",sum

双重循环

#!/usr/bin/env python
#将10-99中十位小于各位的数字都列举出来
for x in [ 1,2,3,4,5,6,7,8,9 ]:
    for y in [ 2,3,4,5,6,7,8,9 ]:
       if x<y: 
          #print("{0}{1}".format(x,y))
          print 10*x+y
#END

函数

def sayHello():
   print("Hello Python!")
#执行   
sayHello()

下面是一个有参数的

有参数的
def max(i,j):
   if i>j:
      return a
   else:
       return b
print(max(23,45))


你可能感兴趣的:(python2.x学习笔记)