forked from looly/python-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path220.py
More file actions
executable file
·26 lines (22 loc) · 740 Bytes
/
220.py
File metadata and controls
executable file
·26 lines (22 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
#coding:utf-8
class Person:
def __init__(self, name, email):
self.name = name
self.email = email
class Programmer(Person):
def __init__(self, name,email,lang, system, website):
Person.__init__(self,name,email)
self.lang = lang
self.system = system
self.website = website
class Pythoner(Programmer):
def __init__(self,name,email):
Programmer.__init__(self,name,email,"python","Ubuntu","qiwsir.github.io")
if __name__=="__main__":
print "name=",writer.name
print "lang=",writer.lang
print "email=",writer.email
print "system=",writer.system
print "website=",writer.website