forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoduleexample.py
More file actions
29 lines (21 loc) · 483 Bytes
/
moduleexample.py
File metadata and controls
29 lines (21 loc) · 483 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
#coding:utf-8
'''
filename: moduleexample.py
'''
class Book:
lang = "python"
def __init__(self, author):
self.author = author
def get_name(self):
return self.author
def foo(x):
return x * 2
#python = Book("laoqi")
#python_name = python.get_name()
#mul_result = foo(2)
if __name__ == "__main__": #⑤
python = Book("laoqi")
python_name = python.get_name()
print(python_name)
mul_result = foo(2)
print(mul_result)