-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdir_gen.py
executable file
·54 lines (39 loc) · 1.22 KB
/
dir_gen.py
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
#!/usr/bin/python3.5
# -*- coding: utf-8 -*-
import os
level = input("Level of Course: ")
level = level if level else "1"
course = input("Class of Course: ")
dir_path = "Lv{}C{}".format(level, course)
main_fn = "main.cpp"
header_fn = dir_path + ".h"
cpp_fn = dir_path + ".cpp"
os.mkdir(dir_path)
os.chdir(dir_path)
print("Create directory in: " + os.getcwd())
q_num = input("Number of Questions: ")
q_main_str = q_header_str = q_cpp_str = ""
for i in range(1, int(q_num) + 1):
q_main_str = "{} {}Q{}();\n".format(q_main_str, dir_path, i)
q_header_str = "{}int {}Q{}();\n\n".format(q_header_str, dir_path, i)
q_cpp_str = q_cpp_str + "int %sQ%s() {\n\t//\n return 0;\n}\n\n" % (dir_path, i)
# print(q_main_str, q_header_str, q_cpp_str)
with open(main_fn, "w+") as main:
main.write("""/*
Include header files and invoke functions\n*/
#include \"%s\"\n
int main() {
%s}""" % (header_fn, q_main_str))
with open(header_fn, "w+") as header:
header.write("""/*
Declare functions in header file\n*/
%s""" % q_header_str)
with open(cpp_fn, "w+") as cpp:
cpp.write("""/*
Implement functions in this file\n*/
#include <iostream>
#include <iomanip>
using namespace std;
%s
""" % (q_cpp_str))
print("DONE")