从零开始学习python,由于自己安装的是python3,而网上的大多数资源都是通过python2写的,因此在实现的时候就存在差异。所有在此记录一下自己遇到的两个版本中的一些不同。由于是刚开始学习所以遇到的问题都比较基础。
print在python3中是以函数形式存在的,所以用的时候要加(),而在python2中则是以表达式的形式存在的直接使用。
python3中的用法如下:
name ="python"
print (name)
在python2中的用法:
name ="python"
print name
urllib2的不同存在方式:在python2中是直接内置的是以urllib2命名的可以直接引用,但是到了python3的时候则被改成了urllib。request了,所有调用方式不一样,但实质上是一样的:
python3中用法:
import urllib.request
response = urllib.request.urlopen('http://www.baidu.com/')
result= response.read()
print(result)
python2中的用法:
import urllib2
response = urllib2.urlopen('http://www.baidu.com/')
result = response.read()
print result
python中的中文注释问题:
根据自己代码编码方式的不同分别在代码前面加上 :
# -*- coding: utf-8 -*-
# -*- coding: gbk -*-