TA的每日心情 | 无聊 2024-9-27 10:07 |
---|
签到天数: 62 天 连续签到: 1 天 [LV.6]测试旅长
|
2#
楼主 |
发表于 2018-2-7 17:01:46
|
只看该作者
- print 'Python', python_version()
- Python 2.7.6
- raise IOError, "file error"
- ---------------------------------------------------------------------------
- IOError Traceback (most recent call last)
- <ipython-input-8-25f049caebb0> in <module>()
- ----> 1 raise IOError, "file error"
- IOError: file error
- raise IOError("file error")
- ---------------------------------------------------------------------------
- IOError Traceback (most recent call last)
- <ipython-input-9-6f1c43f525b2> in <module>()
- ----> 1 raise IOError("file error")
- IOError: file error
- Python 3
- print('Python', python_version())
- Python 3.4.1
- raise IOError, "file error"
- File "<ipython-input-10-25f049caebb0>", line 1
- raise IOError, "file error"
- ^
- SyntaxError: invalid syntax
- The proper way to raise an exception in Python 3:
- print('Python', python_version())
- raise IOError("file error")
- Python 3.4.1
- ---------------------------------------------------------------------------
- OSError Traceback (most recent call last)
- <ipython-input-11-c350544d15da> in <module>()
- 1 print('Python', python_version())
- ----> 2 raise IOError("file error")
- OSError: file error
复制代码 异常处理
Python 3中的异常处理也发生了一点变化。在Python 3中必须使用“as”关键字。
Python 2
- print 'Python', python_version()
- try:
- let_us_cause_a_NameError
- except NameError, err:
- print err, '--> our error message'
- Python 2.7.6
- name 'let_us_cause_a_NameError' is not defined --> our error message
- Python 3
- print('Python', python_version())
- try:
- let_us_cause_a_NameError
- except NameError as err:
- print(err, '--> our error message')
- Python 3.4.1
- name 'let_us_cause_a_NameError' is not defined --> our error message
复制代码 next()函数和.next()方法
由于会经常用到next()(.next())函数(方法),所以还要提到另一个语法改动(实现方面也
做了改动):在Python 2.7.5中,函数形式和方法形式都可以使用,而在Python 3中,只能使用
next()函数(试图调用.next()方法会触发AttributeError)。
- Python 2
- print 'Python', python_version()
- my_generator = (letter for letter in 'abcdefg')
- next(my_generator)
- my_generator.next()
- Python 2.7.6
- 'b'
- Python 3
- print('Python', python_version())
- my_generator = (letter for letter in 'abcdefg')
- next(my_generator)
- Python 3.4.1
- 'a'
- my_generator.next()
- ---------------------------------------------------------------------------
- AttributeError Traceback (most recent call last)
- <ipython-input-14-125f388bb61b> in <module>()
- ----> 1 my_generator.next()
- AttributeError: 'generator' object has no attribute 'next'
复制代码 For循环变量与全局命名空间泄漏
好消息是:在Python 3.x中,for循环中的变量不再会泄漏到全局命名空间中了!
这是Python 3.x中做的一个改动,在“What’s New In Python 3.0”中有如下描述:
“列表推导不再支持[… for var in item1, item2, …]这样的语法,使用[… for var in (item1, item2, …)]代替。
还要注意列表推导有不同的语义:现在列表推导更接近list()构造器中的生成器表达式这样的语法糖,
特别要注意的是,循环控制变量不会再泄漏到循环周围的空间中了。”
- Python 2
- print 'Python', python_version()
- i = 1
- print 'before: i =', i
- print 'comprehension: ', [i for i in range(5)]
- print 'after: i =', i
- Python 2.7.6
- before: i = 1
- comprehension: [0, 1, 2, 3, 4]
- after: i = 4
- Python 3
- print('Python', python_version())
- i = 1
- print('before: i =', i)
- print('comprehension:', [i for i in range(5)])
- print('after: i =', i)
- Python 3.4.1
- before: i = 1
- comprehension: [0, 1, 2, 3, 4]
- after: i = 1
复制代码 比较无序类型
Python 3中另一个优秀的改动是,如果我们试图比较无序类型,会触发一个TypeError。
- Python 2
- print 'Python', python_version()
- print "[1, 2] > 'foo' = ", [1, 2] > 'foo'
- print "(1, 2) > 'foo' = ", (1, 2) > 'foo'
- print "[1, 2] > (1, 2) = ", [1, 2] > (1, 2)
- Python 2.7.6
- [1, 2] > 'foo' = False
- (1, 2) > 'foo' = True
- [1, 2] > (1, 2) = False
- Python 3
- print('Python', python_version())
- print("[1, 2] > 'foo' = ", [1, 2] > 'foo')
- print("(1, 2) > 'foo' = ", (1, 2) > 'foo')
- print("[1, 2] > (1, 2) = ", [1, 2] > (1, 2))
- Python 3.4.1
- ---------------------------------------------------------------------------
- TypeError Traceback (most recent call last)
- <ipython-input-16-a9031729f4a0> in <module>()
- 1 print('Python', python_version())
- ----> 2 print("[1, 2] > 'foo' = ", [1, 2] > 'foo')
- 3 print("(1, 2) > 'foo' = ", (1, 2) > 'foo')
- 4 print("[1, 2] > (1, 2) = ", [1, 2] > (1, 2))
- TypeError: unorderable types: list() > str()
复制代码 通过input()解析用户的输入
幸运的是,Python 3改进了input()函数,这样该函数就会总是将用户的输入存储为str对象。在Python 2中,
为了避免读取非字符串类型会发生的一些危险行为,不得不使用raw_input()代替input()。
- Python 2
- Python 2.7.6
- [GCC 4.0.1 (Apple Inc. build 5493)] on darwin
- Type "help", "copyright", "credits" or "license" for more information.
- >>> my_input = input('enter a number: ')
- enter a number: 123
- >>> type(my_input)
- <type 'int'>
- >>> my_input = raw_input('enter a number: ')
- enter a number: 123
- >>> type(my_input)
- <type 'str'>
- Python 3
- Python 3.4.1
- [GCC 4.2.1 (Apple Inc. build 5577)] on darwin
- Type "help", "copyright", "credits" or "license" for more information.
- >>> my_input = input('enter a number: ')
- enter a number: 123
- >>> type(my_input)
- <class 'str'>
复制代码 返回可迭代对象,而不是列表
在xrange一节中可以看到,某些函数和方法在Python中返回的是可迭代对象,而不像在Python 2中返回列表。
由于通常对这些对象只遍历一次,所以这种方式会节省很多内存。然而,如果通过生成器来多次迭代这些对象,效率就不高了。
此时我们的确需要列表对象,可以通过list()函数简单的将可迭代对象转成列表。
- Python 2
- print 'Python', python_version()
- print range(3)
- print type(range(3))
- Python 2.7.6
- [0, 1, 2]
- <type 'list'>
- Python 3
- print('Python', python_version())
- print(range(3))
- print(type(range(3)))
- print(list(range(3)))
- Python 3.4.1
- range(0, 3)
- <class 'range'>
- [0, 1, 2]
复制代码 下面列出了Python 3中其他不再返回列表的常用函数和方法:
zip()
map()
filter()
字典的.key()方法
字典的.value()方法
字典的.item()方法
|
|