欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python学习笔记(二)基础语法

程序员文章站 2023-11-20 12:59:46
学习python,基本语法不是特别难,有了c的基本知识,理解比较容易。本文的主要内容是python基础语法,学完后,能熟练使用就好。(开发环境依然是python2.7,简单...

学习python,基本语法不是特别难,有了c的基本知识,理解比较容易。本文的主要内容是python基础语法,学完后,能熟练使用就好。(开发环境依然是python2.7,简单使用)
一,基本知识
1,不需要预先定义数据类型(此说法值得商榷,姑且这么说吧),这是与其他语言的最大不同(如c,c++,c#,delphi等)

复制代码 代码如下:

 >>> x=12
 >>> y=13
 >>> z=x+y
 >>> print z
 25

注意:尽管变量不需要预先定义,但是要使用的时候,必须赋值,否则报错:

复制代码 代码如下:

 >>> le
 traceback (most recent call last):
   file "<pyshell#8>", line 1, in <module>
     le
 nameerror: name 'le' is not defined

2,查看变量的类型函数type():

复制代码 代码如下:

1 >>> type(x)
2 <type 'int'>

3,查看变量的内存地址函数id():

复制代码 代码如下:

>>> x=12
>>> y=13
>>> z=x+y
>>> m=12
>>> print 'id(x)=',id(x)
id(x)= 30687684
>>> print 'id(m)=',id(m)
id(m)= 30687684
>>> print 'id(z)=',id(z)
id(z)= 30687528
>>> x=1.30
>>> print 'id(x)=',id(x)
id(x)= 43407128

从上述结果可以发现:变量的指向变,地址不变,换句话说,整数12的地址值始终不变,变化的是变量的指向(如x的地址变化);
4,输出函数print():

复制代码 代码如下:

 >>> x='day'
 >>> y=13.4
 >>> print x,type(x)
 day <type 'str'>
 >>> print y,type(y)
 13.4 <type 'float'>

逗号运算符(,):可以实现连接字符串和数字型数据。

复制代码 代码如下:

 >>> print 'x=',12
 x= 12

格式化控制符:%f浮点数;%s字符串;%d双精度浮点数(这和c的输出是一致的)。

复制代码 代码如下:

 >>> x=12
 >>> y=13.0004
 >>> z='python'
 >>> print "output %d %f %s"%(x,y,s)
 output 12 13.000400 python

5,输入函数raw_input():

复制代码 代码如下:

 >>> raw_input("input an int:")
 input an int:12
 '12'

注意:raw_input()输入的均是字符型。
6,查看帮助函数help():

复制代码 代码如下:

>>> help(id)
help on built-in function id in module __builtin__:

id(...)
    id(object) -> integer

    return the identity of an object. this is guaranteed to be unique among
    simultaneously existing objects. (hint: it's the object's memory address.)

注意:python的注释,#:仅支持单行注释;另外,python编程具有严格的缩进格式。

二、函数
1,函数定义及其调用:

复制代码 代码如下:

#define function:add (函数说明)
def add(x,y):  #函数头部,注意冒号,形参x,y
    z=x+y           #函数体
    return z        #返回值
#define main function
def main():
    a=12
    b=13
    c=add(a,b)   #函数调用,实参a,b
    print c
main()             #无参函数调用
print 'end1!'

注意:这部分与c的存在的异同在于:
1,形参与实参的用法,无参函数,有参函数,默认参数等规则一致。
如def add(x,y=2),调用可以是add(3)也可以是add(3,4),add(y=34,x)
2,c的形参需要指定数据类型,而python不需要。
3,python的返回值允许有多个。如:

复制代码 代码如下:

def test(n1,n2):
    print n1,
    print n2
    n=n1+n2
    m=n1*n2
    p=n1-n2
    e=n1**n2
    return n,m,p,e
print 'entry programme1'
sum,multi,plus,powl=test(2,10)   #这个是c语言所没有的赋值方式
print 'sum=',sum
print 'multi=',multi
print 'plus=',plus
print 'powl=',powl
re=test(2,10)
print re                                #数据类型为:'tuple'
print re[0],re[1],re[2],re[3]
print 'end1!\n'

运行结果:

复制代码 代码如下:

entry programme
2 10
sum= 12
multi= 20
plus= -8
powl= 1024
2 10
(12, 20, -8, 1024)
12 20 -8 1024
end!

2,局部变量:

复制代码 代码如下:

def f1():
    x=12     #局部变量
    print x
def f2():
    y=13      #局部变量
    print y
def f3():
    print x       #错误:没有定义变量x,这与“不需要预先定义数据类型”不矛盾
    print y
def main():
    f1()
    f2()
    #f3()#变量报错 
main()
print 'end2!'

3,修改全局变量的值:

复制代码 代码如下:

def modifyglobal():
    global x              #全局变量定义
    print 'write x =-1'
    x=-1
def main():
# printlocalx()
# printlocaly()
# readglobal()
    modifyglobal()

x=200
#y=100
print 'before modified global x=',
print x
main()
print 'after modified global x=',
print x

运行结果:

复制代码 代码如下:

>>>
 before modified global x= 200
 write x =-1
 after modified global x= -1

三、表达式与分支语句
1,表达式:
      是由数字,运算符,数字分组符号括号,*变量和约束变量等以能求得数值的有意义排列方法所得的组合。表示通常有操作数和操作符两部分组成。
      分类:算术表达式;关系表达式,逻辑表达式(and/or/not)
2,if分支语句:
1)形式一:(if <condition>:)

复制代码 代码如下:

 >>> sex="male"
 >>> if sex=='male':
  print 'man!'
 #此处有两次回车键
 man!
 >>>

2)形式二:(if <condition>: else (if <condition>:))

复制代码 代码如下:

 sex=raw_input('please input your sex:')
 if sex=='m' or sex=='male':
  print 'man!'
 else:
     print 'woman!'

运行结果:

复制代码 代码如下:

 >>>
 please input your sex:male
 man!

3)形式三:(if <condition>: elif <condition>: else ))(这是python有而c没有的形式)

复制代码 代码如下:

count=int(raw_input('please input your score:'))
if count>=90:
   print'优秀!'
elif count>=80:
    print '优良!'
elif count>=70:
    print '合格!'
elif count>=60:
    print '及格!'
else:
    print '不及格!'

运行结果:

复制代码 代码如下:

 >>>
 please input your score:90
 优秀!

注意:python没有switch语句。

四、循环语句:
       背景:在程序设计的时候,经常会遇到一些语句被不断的重复执行,这样的代码极长又低效,很不直观,那么应该考虑用循环体来实现。
 1,while语句:与c在表达上有区别,c有while与do……while形式;python下:while与while……else……形式
 1)while形式下:

复制代码 代码如下:

 i=1
 while i<5:
     print 'welcome you!'
     i=i+1

2)while……else……形式下:

复制代码 代码如下:

 i=1
 while i<5:
     print 'welcome you!'
     i=i+1
 else:
     print "while over!"  #循环正常结束

注意:如果while非正常状态结束(即不按循环条件结束),则else语句不执行。如下:

复制代码 代码如下:

i=1
while i<5:
    print 'welcome you!'
    i=i+1
    if i==2:
        print 'while……'
        break
else:
    print "while over!"

运行结果:

复制代码 代码如下:

1 >>>
2 welcome you!
3 while……

补充:
continue语句:在while循环体中出现时,本次循环continue之下的语句不被执行,直接进入下一次循环。

复制代码 代码如下:

i=1
while i<=5:
    if i==2 or i==4:
        print 'while……continue'
        i=i+1
        continue
    print 'welcome you!'
    i=i+1
else:
    print "while over!"

运行结果:

复制代码 代码如下:

>>>
welcome you!
while……continue
welcome you!
while……continue
welcome you!
while over!

五,小结:

      本文介绍了python的变量,输入输出函数,表达式,基本语句(分支和循环)等知识的相关使用,通过练习,应该对python有一个初步的认识。