-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudy.py
More file actions
30 lines (27 loc) · 1008 Bytes
/
Study.py
File metadata and controls
30 lines (27 loc) · 1008 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
from _20180423 import Output_20180423
from _20180423_q import Output_20180423_q
from _20180424 import Output_20180424
from _20180424_q import Output_20180424_q
from _20180425 import Output_20180425
from _20180425_q import Output_20180425_q
from _20180426 import Output_20180426
from _20180427 import Output_20180427
from _20180604 import Output_20180604
from _20180605 import Output_20180605
from _20180607 import Output_20180607
from _20180608 import Output_20180608
def main():
# Output_20180423.ouput_20180423()
# Output_20180423_q.ouput_20180423_q()
# Output_20180424.output_20180424()
# Output_20180424_q.output_20180424_q()
# Output_20180425.output_20180425()
# Output_20180425_q.output_20180425_q()
# Output_20180426.output_20180426()
# Output_20180427.output_20180427()
# Output_20180604.output_20180604()
# Output_20180605.output_20180605()
# Output_20180607.output_20180607()
Output_20180608.output_20180608()
if __name__ == "__main__":
main()