forked from looly/python-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path217.py
More file actions
executable file
·36 lines (31 loc) · 966 Bytes
/
217.py
File metadata and controls
executable file
·36 lines (31 loc) · 966 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
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
#coding:utf-8
"""
class Person:
def __init__(self, name, lang, website):
self.name = name
self.lang = lang
self.website = website
self.email = "[email protected]"
"""
class Person:
def __init__(self, name, lang="golang", website="www.google.com"):
self.name = name
self.lang = lang
self.website = website
def author(self, address):
#return self.name
return laoqi.name+" in "+address
laoqi = Person("LaoQi")
info = Person("qiwsir",lang="python",website="qiwsir.github.io")
#print "laoqi.name=",laoqi.name
print "Author name from laoqi:",laoqi.author("China")
print "Author name from info:",info.author("Suzhou")
#print "info.name=",info.name
#print "-------"
#print "laoqi.lang=",laoqi.lang
#print "info.lang=",info.lang
#print "-------"
#print "laoqi.website=",laoqi.website
#print "info.website=",#info.website