-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.py
More file actions
110 lines (103 loc) · 2.31 KB
/
main.py
File metadata and controls
110 lines (103 loc) · 2.31 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# python main.py
# python3 main.py
# Jupyter Notebook
from __future__ import division, absolute_import, print_function
import src
from src.test import testAll
if __name__ == '__main__':
# Test required packet
testAll()
# output all src files
print(src.__all__)
# Chapter 1
src.Chapter1().note()
# Chapter 2 (2.1 2.2)
src.Chapter2().note()
# Chapter 2 (2.3)
src.Chapter2_3().note()
# Chapter 3 (3.1)
src.Chapter3_1().note()
# Chapter 3 (3.2)
src.Chapter3_2().note()
# Chapter 4 (4.1)
src.Chapter4_1().note()
# Chapter 4 (4.2)
src.Chapter4_2().note()
# Chapter 4 (4.3)
src.Chapter4_3().note()
# Chapter 4 (4.4)
src.Chapter4_4().note()
# Chapter 5 (5.1)
src.Chapter5_1().note()
# Chapter 5 (5.2)
src.Chapter5_2().note()
# Chapter 5 (5.3)
src.Chapter5_3().note()
# Chapter 5 (5.4)
src.Chapter5_4().note()
# Chapter 6
src.chapter6_printall()
# chapter 7
src.printchapter7note()
# chapter8
src.printchapter8note()
# chapter9
src.printchapter9note()
# chapter10
src.printchapter10note()
# chapter11
src.printchapter11note()
# chapter12
src.printchapter12note()
# chapter13
src.printchapter13note()
# chapter14
src.printchapter14note()
# chapter15
src.printchapter15note()
# chapter16
src.printchapter16note()
# chapter17
src.printchapter17note()
# chapter18
src.printchapter18note()
# chapter19
src.printchapter19note()
# chapter20
src.printchapter20note()
# chapter21
src.printchapter21note()
# chapter22
src.printchapter22note()
# chapter22
src.printchapter22note()
# chapter23
src.printchapter23note()
# chapter24
src.printchapter24note()
# chapter25
src.printchapter25note()
# chapter26
src.printchapter26note()
# chapter27
src.printchapter27note()
# chapter28
src.printchapter28note()
# chapter29
src.printchapter28note()
# chapter30
src.printchapter30note()
# chapter31
src.printchapter31note()
# chapter32
src.printchapter32note()
# chapter33
src.printchapter33note()
# chapter34
src.printchapter34note()
# chapter35
src.printchapter35note()
else:
pass
# python main.py
# python3 main.py