在python中一切皆为对象。
例: int为一个类,int i 中的 i为 int 类的对象/一个实例
类的属性: 方法和域。 域分两种类型:属于每个对象和属于类本身。分别称为 实例变量和 类变量。
类使用class关键字创建。类的域和方法被列在一个缩进块中。
self
类的方法与普通的函数只有一个特别的区别——它们必须有一个额外的第一个参数名称,但是在调用这个方法的时候不为这个参数赋值,Python会提供这个值。这个特别的变量指对象本身,按照惯例它的名称是self。
(相当于C++中的this指针)
调用时不需为给self赋值以及为何不需要给它赋值 原理:
假如有一个类称为MyClass和这个类的一个实例MyObject。当调用这个对象的方法MyObject.method(arg1, arg2)的时候,这会由Python自动转为MyClass.method(MyObject, arg1, arg2)——这就是self的原理了。
提醒:定义一个不需要参数的方法,同样还是得给这个方法定义一个self参数。
__int__方法
__init__方法在类的一个对象被建立时,马上运行。这个方法可以用来对对象做一些 初始化 。注意,这个名称的开始和结尾都是双下划线。(相当于C++中的构造函数)
两种类型的域
类的变量和对象的变量,它们根据是类还是对象 拥有 这个变量而区分。类的变量 由一个类的所有对象(实例)共享使用。
对象的变量 由类的每个对象/实例拥有。因此每个对象有自己对这个域的一份拷贝,即它们不是共享的,在同一个类的不同实例中,虽然对象的变量有相同的名称,但是是互不相关的。
__del__方法
同C++中的析构函数作用
Python中所有的类成员(包括数据成员)都是 公共的 ,所有的方法都是有效的 。
只有一个例外:如果你使用的数据成员名称以 双下划线前缀 比如__privatevar,Python的名称管理体系会有效地把它作为私有变量。
惯例:可以将欲作为私有变量的成员前加单下划线前缀,其他名称作为公共的
#!/usr/bin/python
# Filename: objvar.py
class Person:
'''Represents a person.'''
population = 0
def
__init__(self, name):
'''Initializes the person's data.'''
self.name = name
print '(Initializing %s)' % self.name
# When this person is created, he/she
# adds to the population
Person.population += 1
def __del__(self):
'''I am dying.'''
print '%s says bye.' % self.name
Person.population -= 1
if Person.population == 0:
print 'I am the last one.'
else:
print 'There are still %d people left.' % Person.population
def sayHi(self):
'''Greeting by the person.
Really, that's all it does.'''
print
'Hi, my name is %s.' %
self.name
def howMany(self):
'''Prints the current population.'''
if Person.population
== 1:
print
'I am the only person here.'
else:
print
'We have %d persons here.' % Person.population
swaroop = Person('Swaroop')
swaroop.sayHi()
swaroop.howMany()
kalam = Person('Abdul Kalam')
kalam.sayHi()
kalam.howMany()
swaroop.sayHi()
swaroop.howMany()
Person.__doc__()
Person.howMany().__doc()
输出
$ python objvar.py
(Initializing Swaroop)
Hi, my name is Swaroop.
I am the only person here.
(Initializing Abdul Kalam)
Hi, my name is Abdul Kalam.
We have 2 persons here.
Hi, my name is Swaroop.
We have 2 persons here.
Abdul Kalam says bye.
There are still 1 people left.
Swaroop says bye.
I am the last one.
Represents a person.
Prints the current population.
分析:population 属于类的域,为各实例共享。 类的域,使用时通过 className.field调用,实例的域在函数定义时,通过self.field调用。
使用Person.__doc__和Person.sayHi.__doc__来分别访问类与方法的文档字符串
继承
面向对象的编程带来的主要好处之一是代码的重用,实现这种重用的方法之一是通过 继承 机制。
示例:
#!/usr/bin/python
# Filename: inherit.py
class SchoolMember:
'''Represents any school member.'''
def
__init__(self, name, age):
self.name
= name
self.age
= age
print
'(Initialized SchoolMember: %s)' %
self.name
def tell(self):
'''Tell my details.'''
print
'Name:"%s" Age:"%s"' % (self.name,
self.age),
class Teacher(SchoolMember):
'''Represents a teacher.'''
def
__init__(self, name, age, salary):
SchoolMember.__init__(self, name, age)
self.salary
= salary
print
'(Initialized Teacher: %s)' %
self.name
def tell(self):
SchoolMember.tell(self)
print
'Salary: "%d"' %
self.salary
class Student(SchoolMember):
'''Represents a student.'''
def
__init__(self, name, age, marks):
SchoolMember.__init__(self, name, age)
self.marks
= marks
print
'(Initialized Student: %s)' %
self.name
def tell(self):
SchoolMember.tell(self)
print
'Marks: "%d"' %
self.marks
t = Teacher('Mrs. Shrividya',
40, 30000)
s = Student('Swaroop',
22, 75)
print
# prints a blank line
members = [t, s]
for member
in members:
member.tell() # works for both Teachers and Students
输出
$ python inherit.py
(Initialized SchoolMember: Mrs. Shrividya)
(Initialized Teacher: Mrs. Shrividya)
(Initialized SchoolMember: Swaroop)
(Initialized Student: Swaroop)
Name:"Mrs. Shrividya" Age:"40" Salary: "30000"
Name:"Swaroop" Age:"22" Marks: "75"
SchoolMember类被称为 基本类 或 超类 。而Teacher和Student类被称为
导出类 或 子类 。
输入/输出
文件与储存器
文件 (创建一个file类的对象来打开一个文件,分别使用file类的read、readline或write方法来恰当地读写文件。'w'--写,'r'--读,'a'--追加)
#!/usr/bin/python
# Filename: using_file.py
poem = '''\
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!
'''
f = file('poem.txt',
'w') # open for 'w'riting
f.write(poem) # write text to file
f.close() # close the file
f = file('poem.txt')
# if no mode is specified, 'r'ead mode is assumed by default
while
True:
line = f.readline()
if
len(line) ==
0: # Zero length indicates EOF
break
print line,
# Notice comma to avoid automatic newline added by Python
f.close() # close the file
输出
$ python using_file.py
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!
储存器
Python提供一个标准的模块,称为pickle。可以在一个文件中储存任何Python对象,之后又可以把它完整无缺地取出来。这被称为 持久地 储存对象。
还有另一个模块称为cPickle,它的功能和pickle模块完全相同,只不过它是用C语言编写的,因此要快得多(比pickle快1000倍)。
示例(储存与取储存)
#!/usr/bin/python
# Filename: pickling.py
import cPickle as p
#import pickle as p
shoplistfile = 'shoplist.data'
# the name of the file where we will store the object
shoplist = ['apple',
'mango', 'carrot']
# Write to the file
f = file(shoplistfile,
'w')
p.dump(shoplist, f) # dump the object to a file
f.close()
del shoplist
# remove the shoplist
# Read back from the storage
f = file(shoplistfile)
storedlist = p.load(f)
print storedlist
输出
$ python pickling.py
['apple', 'mango', 'carrot']
分析:import cPickle as p 将模块cPickle命名为 p 优点:1. 方便更换模块,只需修改cPickle 2.方便方法调用 p.dump(),而非 cPickle.dump()
异常
try..except
引发异常
使用raise语句 引发 异常。需指明错误/异常的名称和伴随异常 触发的 异常对象。可以引发的错误或异常应该分别是一个Error或Exception类的直接或间接导出类。
#!/usr/bin/python
# Filename: raising.py
class ShortInputException(Exception):
'''A user-defined exception class.'''
def
__init__(self, length, atleast):
Exception.__init__(self)
self.length
= length
self.atleast
= atleast
try:
s = raw_input('Enter something --> ')
if
len(s) <
3:
raise ShortInputException(len(s),
3)
# Other work can continue as usual here
except
EOFError:
print
'\nWhy did you do an EOF on me?'
except ShortInputException, x:
print
'ShortInputException: The input was of length %d, \
was expecting at least %d' % (x.length, x.atleast)
else:
print
'No exception was raised.'
输出
$ python raising.py
Enter something -->
Why did you do an EOF on me?
$ python raising.py
Enter something --> ab
ShortInputException: The input was of length 2, was expecting at least 3
$ python raising.py
Enter something --> abc
No exception was raised.
try..finally
假如你在读一个文件的时候,希望在无论异常发生与否的情况下都关闭文件,该怎么做呢?这可以使用finally块来完成。
示例:
#!/usr/bin/python
# Filename: finally.py
import time
try:
f = file('poem.txt')
while
True:
# our usual file-reading idiom
line = f.readline()
if
len(line) ==
0:
break
time.sleep(2)
print line,
finally:
f.close()
print
'Cleaning up...closed the file'
输出:
正常运行
$ python finally.py
Programming is fun
When the work is done
Cleaning up...closed the file
运行中 ctrl+c中断/取消程序
$ python finally.py
Programming is fun
When the work is done
^Cclose the file
Traceback (most recent call last):
File "finally.py", line 12, in ?
time.sleep(2)
KeyboardInterrupt
分析:观察到KeyboardInterrupt异常被触发,程序退出。但是在程序退出之前,finally从句仍然被执行,把文件关闭
分享到:
相关推荐
《简明Python教程》作为一本专注于Python语言的入门书籍,适合初学者以及对Python编程语言有兴趣的读者。该书的内容结构合理,从基础概念到实际应用逐步深入,帮助读者建立起扎实的编程基础和理解。其内容涵盖了...
《简明Python教程》是一本自由图书,由Swaroop C H编写,旨在于介绍如何使用Python语言进行编程。该书以教材与指南的形式为入门者介绍Python语言。 Python安装 --------- 在开始学习Python之前,需要安装Python...
"Python基础教程---简明Python教程"是Swaroop C. H.撰写,并由沈洁元翻译的一本针对初学者的指导书籍。这本书旨在帮助读者快速掌握Python编程的基本概念和技能。 1. **Python简介**: Python是一种解释型、面向...
- **高级主题**:涉及面向对象编程、输入与输出、异常处理等内容,帮助读者进一步提高编程技能。 - **标准库**:详细讲解Python标准库的使用方法,如文件操作、网络编程等实用工具。 - **解决问题的方法**:通过具体...
5. **面向对象编程**:Python中的类和对象是其核心特性,教程会讲解类的定义、继承、封装和多态等面向对象的概念。 6. **文件操作**:Python提供了丰富的文件操作接口,可以进行读写、追加等操作,对于处理数据存储...
"简明Python教程"涵盖了Python的基础知识和核心概念,通过学习,读者能够理解Python的基本语法、数据结构、控制流、函数以及面向对象编程等概念,并能进行简单的编程实践。随着对Python的深入学习,读者可以进一步...
7. **面向对象编程**: Python支持面向对象编程,包括类的定义、对象的创建和继承。面向对象编程是软件开发中的一种重要思想,通过封装、继承和多态性来设计复杂系统。 8. **输入与输出**: 在Python中,可以使用...
7. **类与对象**:面向对象编程基础,包括类的定义、对象的创建、继承、封装和多态。 8. **列表、元组、字典和集合**:这些可变和不可变的数据结构在实际编程中的应用。 9. **文件操作**:如何读写文件,以及处理...
* 了解 Python 语言的面向对象编程概念 * 学习如何使用类和对象来组织和操作数据 8. 输入&输出 * 了解 Python 语言的输入和输出机制 * 学习如何使用输入和输出来与用户交互 9. 异常 * 了解 Python 语言的异常...
### Python初学教程:《简明Python教程》 #### 知识点概述: 根据所提供的《简明Python教程》部分信息,我们可以归纳出一系列重要的Python基础知识和技术要点,这些内容非常适合Python初学者作为入门指南。 #### ...
- **目录结构**:本书包括基础概念、运算符与表达式、控制流、函数、模块、数据结构、面向对象编程、输入与输出、异常处理、标准库等内容。 - **核心章节解读**: - **基础**:介绍Python的基本语法和概念,包括...
通过上述总结可以看出,《简明Python教程英文原版》不仅覆盖了Python编程的基础知识,还涉及了高级话题,是一本非常适合自学的教材。无论是对编程完全陌生的读者还是有一定基础的学习者,都能从中获得有价值的信息和...
面向对象编程是Python的一个重要特性,教程介绍了类和对象的概念,以及如何通过继承和多态性来设计可复用的代码。输入与输出章节则教授如何从用户那里获取数据,以及如何将结果输出到屏幕或文件。 教程的后续部分...
### 知识点总结:《简明Python教程》 #### 核心知识点: 1. **Python语言基础**:包括变量、数据类型(如数字、字符串)、运算符与表达式、控制流(如if语句、while循环、for循环)。 2. **函数与模块**:涵盖...
总的来说,"简明 Python 教程 Python3"涵盖了Python3的基础知识,包括语法、数据结构、函数、模块、异常处理、IO操作、面向对象编程以及控制流等内容,是Python初学者理想的入门资源。通过深入学习和实践,可以快速...
5. **面向对象编程**:类的定义、对象的创建与使用、继承、封装和多态。 6. **文件操作**:读写文件、文本模式和二进制模式。 7. **标准库**:如sys、os、math等模块的使用方法,用于系统交互、数学计算等。 **...
Python支持面向对象编程,包括类(class)的定义和对象(instance)的创建。 ```python class Person: def __init__(self, name, age): self.name = name self.age = age person = Person("Alice", 30) print...
《简明Python教程》是一本适合初学者入门的书籍,它通常会涵盖Python的基础知识,如变量、数据类型(包括整型、浮点型、字符串、布尔型)、流程控制(条件语句、循环语句)、函数、模块和包的使用,以及面向对象编程...