❏ 站外平台:

十分钟学会 Python

作者: Stavros Korokithakis 译者: 伯乐在线 刘见康

| 2015-09-30 08:42   评论: 6 收藏: 10    

初试牛刀

假设你希望学习Python这门语言,却苦于找不到一个简短而全面的入门教程。那么本教程将花费十分钟的时间带你走入Python的大门。本文的内容介于教程(Toturial)和速查手册(CheatSheet)之间,因此只会包含一些基本概念。很显然,如果你希望真正学好一门语言,你还是需要亲自动手实践的。在此,我会假定你已经有了一定的编程基础,因此我会跳过大部分非Python语言的相关内容。本文将高亮显示重要的关键字,以便你可以很容易看到它们。另外需要注意的是,由于本教程篇幅有限,有很多内容我会直接使用代码来说明加以少许注释。

Python的语言特性

Python是一门具有强类型(即变量类型是强制要求的)、动态性、隐式类型(不需要做变量声明)、大小写敏感(var和VAR代表了不同的变量)以及面向对象(一切皆为对象)等特点的编程语言。 

获取帮助

你可以很容易的通过Python解释器获取帮助。如果你想知道一个对象(object)是如何工作的,那么你所需要做的就是调用help(<object>)!另外还有一些有用的方法,dir()会显示该对象的所有方法,还有<object>.__doc__会显示其文档:

  1. >>> help(5)
  2. Help on int object:
  3. (etc etc)
  4. >>> dir(5)
  5. ['__abs__', '__add__', ...]
  6. >>> abs.__doc__
  7. 'abs(number) -> number
  8. Return the absolute value of the argument.'

语法 

Python中没有强制的语句终止字符,且代码块是通过缩进来指示的。缩进表示一个代码块的开始,逆缩进则表示一个代码块的结束。声明以冒号(:)字符结束,并且开启一个缩进级别。单行注释以井号字符(#)开头,多行注释则以多行字符串的形式出现。赋值(事实上是将对象绑定到名字)通过等号(“=”)实现,双等号(“==”)用于相等判断,”+=”和”-=”用于增加/减少运算(由符号右边的值确定增加/减少的值)。这适用于许多数据类型,包括字符串。你也可以在一行上使用多个变量。例如:

  1. >>> myvar = 3
  2. >>> myvar += 2
  3. >>> myvar
  4. 5
  5. >>> myvar -= 1
  6. >>> myvar
  7. 4
  8. """This is a multiline comment.
  9. The following lines concatenate the two strings."""
  10. >>> mystring = "Hello"
  11. >>> mystring += " world."
  12. >>> print mystring
  13. Hello world.
  14. # This swaps the variables in one line(!).
  15. # It doesn't violate strong typing because values aren't
  16. # actually being assigned, but new objects are bound to
  17. # the old names.
  18. >>> myvar, mystring = mystring, myvar

数据类型 

Python具有列表(list)、元组(tuple)和字典(dictionaries)三种基本的数据结构,而集合(sets)则包含在集合库中(但从Python2.5版本开始正式成为Python内建类型)。列表的特点跟一维数组类似(当然你也可以创建类似多维数组的“列表的列表”),字典则是具有关联关系的数组(通常也叫做哈希表),而元组则是不可变的一维数组(Python中“数组”可以包含任何类型的元素,这样你就可以使用混合元素,例如整数、字符串或是嵌套包含列表、字典或元组)。数组中第一个元素索引值(下标)为0,使用负数索引值能够从后向前访问数组元素,-1表示最后一个元素。数组元素还能指向函数。来看下面的用法:

  1. >>> sample = [1, ["another", "list"], ("a", "tuple")]
  2. >>> mylist = ["List item 1", 2, 3.14]
  3. >>> mylist[0] = "List item 1 again" # We're changing the item.
  4. >>> mylist[-1] = 3.21 # Here, we refer to the last item.
  5. >>> mydict = {"Key 1": "Value 1", 2: 3, "pi": 3.14}
  6. >>> mydict["pi"] = 3.15 # This is how you change dictionary values.
  7. >>> mytuple = (1, 2, 3)
  8. >>> myfunction = len
  9. >>> print myfunction(mylist)
  10. 3

你可以使用:运算符访问数组中的某一段,如果:左边为空则表示从第一个元素开始,同理:右边为空则表示到最后一个元素结束。负数索引则表示从后向前数的位置(-1是最后一个项目),例如:

  1. >>> mylist = ["List item 1", 2, 3.14]
  2. >>> print mylist[:]
  3. ['List item 1', 2, 3.1400000000000001]
  4. >>> print mylist[0:2]
  5. ['List item 1', 2]
  6. >>> print mylist[-3:-1]
  7. ['List item 1', 2]
  8. >>> print mylist[1:]
  9. [2, 3.14]
  10. # Adding a third parameter, "step" will have Python step in
  11. # N item increments, rather than 1.
  12. # E.g., this will return the first item, then go to the third and
  13. # return that (so, items 0 and 2 in 0-indexing).
  14. >>> print mylist[::2]
  15. ['List item 1', 3.14]

字符串

Python中的字符串使用单引号(‘)或是双引号(“)来进行标示,并且你还能够在通过某一种标示的字符串中使用另外一种标示符(例如 “He said ‘hello’.”)。而多行字符串可以通过三个连续的单引号(”’)或是双引号(“”")来进行标示。Python可以通过u”This is a unicode string”这样的语法使用Unicode字符串。如果想通过变量来填充字符串,那么可以使用取模运算符(%)和一个元组。使用方式是在目标字符串中从左至右使用%s来指代变量的位置,或者使用字典来代替,示例如下:

  1. >>>print "Name: %s\
  2. Number: %s\
  3. String: %s" % (myclass.name, 3, 3 * "-")
  4. Name: Poromenos
  5. Number: 3
  6. String: ---
  7. strString = """This is
  8. a multiline
  9. string."""
  10. # WARNING: Watch out for the trailing s in "%(key)s".
  11. >>> print "This %(verb)s a %(noun)s." % {"noun": "test", "verb": "is"}
  12. This is a test.

流程控制

Python中可以使用ifforwhile来实现流程控制。Python中并没有select,取而代之使用if来实现。使用for来枚举列表中的元素。如果希望生成一个由数字组成的列表,则可以使用range(<number>)函数。以下是这些声明的语法示例:

  1. rangelist = range(10)
  2. >>> print rangelist
  3. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  4. for number in rangelist:
  5. # Check if number is one of
  6. # the numbers in the tuple.
  7. if number in (3, 4, 7, 9):
  8. # "Break" terminates a for without
  9. # executing the "else" clause.
  10. break
  11. else:
  12. # "Continue" starts the next iteration
  13. # of the loop. It's rather useless here,
  14. # as it's the last statement of the loop.
  15. continue
  16. else:
  17. # The "else" clause is optional and is
  18. # executed only if the loop didn't "break".
  19. pass # Do nothing
  20. if rangelist[1] == 2:
  21. print "The second item (lists are 0-based) is 2"
  22. elif rangelist[1] == 3:
  23. print "The second item (lists are 0-based) is 3"
  24. else:
  25. print "Dunno"
  26. while rangelist[1] == 1:
  27. pass

函数

函数通过“def”关键字进行声明。可选参数以集合的方式出现在函数声明中并紧跟着必选参数,可选参数可以在函数声明中被赋予一个默认值。已命名的参数需要赋值。函数可以返回一个元组(使用元组拆包可以有效返回多个值)。Lambda函数是由一个单独的语句组成的特殊函数,参数通过引用进行传递,但对于不可变类型(例如元组,整数,字符串等)则不能够被改变。这是因为只传递了该变量的内存地址,并且只有丢弃了旧的对象后,变量才能绑定一个对象,所以不可变类型是被替换而不是改变(译者注:虽然Python传递的参数形式本质上是引用传递,但是会产生值传递的效果)。例如:

  1. # Same as def funcvar(x): return x + 1
  2. funcvar = lambda x: x + 1
  3. >>> print funcvar(1)
  4. 2
  5. # an_int and a_string are optional, they have default values
  6. # if one is not passed (2 and "A default string", respectively).
  7. def passing_example(a_list, an_int=2, a_string="A default string"):
  8. a_list.append("A new item")
  9. an_int = 4
  10. return a_list, an_int, a_string
  11. >>> my_list = [1, 2, 3]
  12. >>> my_int = 10
  13. >>> print passing_example(my_list, my_int)
  14. ([1, 2, 3, 'A new item'], 4, "A default string")
  15. >>> my_list
  16. [1, 2, 3, 'A new item']
  17. >>> my_int
  18. 10

Python支持有限的多继承形式。私有变量和方法可以通过添加至少两个前导下划线和最多尾随一个下划线的形式进行声明(如“__spam”,这只是惯例,而不是Python的强制要求)。当然,我们也可以给类的实例取任意名称。例如:

  1. class MyClass(object):
  2. common = 10
  3. def __init__(self):
  4. self.myvariable = 3
  5. def myfunction(self, arg1, arg2):
  6. return self.myvariable
  7. # This is the class instantiation
  8. >>> classinstance = MyClass()
  9. >>> classinstance.myfunction(1, 2)
  10. 3
  11. # This variable is shared by all classes.
  12. >>> classinstance2 = MyClass()
  13. >>> classinstance.common
  14. 10
  15. >>> classinstance2.common
  16. 10
  17. # Note how we use the class name
  18. # instead of the instance.
  19. >>> MyClass.common = 30
  20. >>> classinstance.common
  21. 30
  22. >>> classinstance2.common
  23. 30
  24. # This will not update the variable on the class,
  25. # instead it will bind a new object to the old
  26. # variable name.
  27. >>> classinstance.common = 10
  28. >>> classinstance.common
  29. 10
  30. >>> classinstance2.common
  31. 30
  32. >>> MyClass.common = 50
  33. # This has not changed, because "common" is
  34. # now an instance variable.
  35. >>> classinstance.common
  36. 10
  37. >>> classinstance2.common
  38. 50
  39. # This class inherits from MyClass. The example
  40. # class above inherits from "object", which makes
  41. # it what's called a "new-style class".
  42. # Multiple inheritance is declared as:
  43. # class OtherClass(MyClass1, MyClass2, MyClassN)
  44. class OtherClass(MyClass):
  45. # The "self" argument is passed automatically
  46. # and refers to the class instance, so you can set
  47. # instance variables as above, but from inside the class.
  48. def __init__(self, arg1):
  49. self.myvariable = 3
  50. print arg1
  51. >>> classinstance = OtherClass("hello")
  52. hello
  53. >>> classinstance.myfunction(1, 2)
  54. 3
  55. # This class doesn't have a .test member, but
  56. # we can add one to the instance anyway. Note
  57. # that this will only be a member of classinstance.
  58. >>> classinstance.test = 10
  59. >>> classinstance.test
  60. 10

异常

Python中的异常由 try-except [exceptionname] 块处理,例如:

  1. def some_function():
  2. try:
  3. # Division by zero raises an exception
  4. 10 / 0
  5. except ZeroDivisionError:
  6. print "Oops, invalid."
  7. else:
  8. # Exception didn't occur, we're good.
  9. pass
  10. finally:
  11. # This is executed after the code block is run
  12. # and all exceptions have been handled, even
  13. # if a new exception is raised while handling.
  14. print "We're done with that."
  15. >>> some_function()
  16. Oops, invalid.
  17. We're done with that.

导入

外部库可以使用 import [libname] 关键字来导入。同时,你还可以用 from [libname] import [funcname] 来导入所需要的函数。例如:

  1. import random
  2. from time import clock
  3. randomint = random.randint(1, 100)
  4. >>> print randomint
  5. 64

文件I / O

Python针对文件的处理有很多内建的函数库可以调用。例如,这里演示了如何序列化文件(使用pickle库将数据结构转换为字符串):

  1. import pickle
  2. mylist = ["This", "is", 4, 13327]
  3. # Open the file C:\\binary.dat for writing. The letter r before the
  4. # filename string is used to prevent backslash escaping.
  5. myfile = open(r"C:\\binary.dat", "w")
  6. pickle.dump(mylist, myfile)
  7. myfile.close()
  8. myfile = open(r"C:\\text.txt", "w")
  9. myfile.write("This is a sample string")
  10. myfile.close()
  11. myfile = open(r"C:\\text.txt")
  12. >>> print myfile.read()
  13. 'This is a sample string'
  14. myfile.close()
  15. # Open the file for reading.
  16. myfile = open(r"C:\\binary.dat")
  17. loadedlist = pickle.load(myfile)
  18. myfile.close()
  19. >>> print loadedlist
  20. ['This', 'is', 4, 13327]

其它杂项

  • 数值判断可以链接使用,例如 1<a<3 能够判断变量 a 是否在1和3之间。
  • 可以使用 del 删除变量或删除数组中的元素。
  • 列表推导式(List Comprehension)提供了一个创建和操作列表的有力工具。列表推导式由一个表达式以及紧跟着这个表达式的for语句构成,for语句还可以跟0个或多个if或for语句,来看下面的例子:
    1. >>> lst1 = [1, 2, 3]
    2. >>> lst2 = [3, 4, 5]
    3. >>> print [x * y for x in lst1 for y in lst2]
    4. [3, 4, 5, 6, 8, 10, 9, 12, 15]
    5. >>> print [x for x in lst1 if 4 > x > 1]
    6. [2, 3]
    7. # Check if a condition is true for any items.
    8. # "any" returns true if any item in the list is true.
    9. >>> any([i % 3 for i in [3, 3, 4, 4, 3]])
    10. True
    11. # This is because 4 % 3 = 1, and 1 is true, so any()
    12. # returns True.
    13. # Check for how many items a condition is true.
    14. >>> sum(1 for i in [3, 3, 4, 4, 3] if i == 4)
    15. 2
    16. >>> del lst1[0]
    17. >>> print lst1
    18. [2, 3]
    19. >>> del lst1
  • 全局变量在函数之外声明,并且可以不需要任何特殊的声明即能读取,但如果你想要修改全局变量的值,就必须在函数开始之处用global关键字进行声明,否则Python会将此变量按照新的局部变量处理(请注意,如果不注意很容易被坑)。例如:
    1. number = 5
    2. def myfunc():
    3. # This will print 5.
    4. print number
    5. def anotherfunc():
    6. # This raises an exception because the variable has not
    7. # been bound before printing. Python knows that it an
    8. # object will be bound to it later and creates a new, local
    9. # object instead of accessing the global one.
    10. print number
    11. number = 3
    12. def yetanotherfunc():
    13. global number
    14. # This will correctly change the global.
    15. number = 3

小结

本教程并未涵盖Python语言的全部内容(甚至连一小部分都称不上)。Python有非常多的库以及很多的功能特点需要学习,所以要想学好Python你必须在此教程之外通过其它方式,例如阅读Dive into Python。我希望这个教程能给你一个很好的入门指导。如果你觉得本文还有什么地方值得改进或添加,或是你希望能够了解Python的哪方面内容,请留言。

本教程适合作一个简短的电子书。电子书后续额外提供的各种Python最佳实践都在一本独立的电子书里,感兴趣的同学可以到 https://leanpub.com/learn-python 购买。购买后可以免费获取更新。



最新评论

从 2025.1.15 起,不再提供评论功能
icanfigure [Sina Weibo 1.0|Android 4.4] 2016-01-09 23:31 6
not important things
来自上海的 Firefox 42.0|Mac 10.10 用户 2015-09-30 12:23 9
1. Python并没有多行注释,文中多行注释为创建多行字符串。
2. 没告诉读者是python2而非python3

这篇文章还行,算不上好。
绿色圣光 [Firefox 40.0|Windows 7] 2015-09-30 12:16 7
想起了“二十一天学会”系列。
morrowind [Internet Explorer 11.0|Windows 8.1] 2015-09-30 11:59 5
我在学python中,然而看完后还是很多不懂
来自吉林长春的 Chrome 45.0|Windows 7 用户 2015-09-30 11:33 7
简单快速了解, 很给力. 不过需要一定其他语言编程基础.
来自广西来宾的 Chrome 44.0|Windows XP 用户 2015-09-30 09:44 15
已经过了10分钟了,然而我还是不会。

返回顶部

分享到微信

打开微信,点击顶部的“╋”,
使用“扫一扫”将网页分享至微信。