Skip to content

Commit be8d52a

Browse files
committed
update
1 parent ed34ebf commit be8d52a

23 files changed

Lines changed: 1541 additions & 0 deletions

File tree

.DS_Store

2 KB
Binary file not shown.

Python tutorial - 15 - Multiple Inheritance /.idea/workspace.xml

Lines changed: 297 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python tutorial - 16 - Multiple Inheritance/.idea/Python tutorial - 15 - Multiple Inheritance .iml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python tutorial - 16 - Multiple Inheritance/.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python tutorial - 16 - Multiple Inheritance/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python tutorial - 16 - Multiple Inheritance/.idea/workspace.xml

Lines changed: 308 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from pprint import pprint
2+
3+
class Mammal:
4+
def __init__(self):
5+
pprint("This is Mammal")
6+
def move(self):
7+
pprint("I am moving")
8+
9+
def run(self):
10+
pprint("I am running")
11+
12+
class Bird:
13+
def __init__(self):
14+
pprint("This is bird")
15+
16+
def fly(self):
17+
pprint("I am flying")
18+
19+
class Bat(Mammal, Bird):
20+
pass
21+
22+
aBat = Bat()
23+
aBat.move()
24+
aBat.run()
25+
aBat.fly()

Python tutorial - 15 - Multiple Inheritance /presentation.pages renamed to Python tutorial - 16 - Multiple Inheritance/presentation.pages

95.4 KB
Binary file not shown.

Python tutorial - 17 - Psycopg2-Insert,Update,Delete,Query/.idea/Psycopg2-Insert,Update,Delete,Query.iml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python tutorial - 17 - Psycopg2-Insert,Update,Delete,Query/.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)