-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtextbookTitleGenerator.py
More file actions
96 lines (90 loc) · 2.11 KB
/
Copy pathtextbookTitleGenerator.py
File metadata and controls
96 lines (90 loc) · 2.11 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
'''Random Academic Textbook Title Generator
Thanks to Elizabeth R (@eramirem) for the inspiration
November 20, 2018'''
from random import choice
nouns = ["Priciples",
"Applications",
"Investigations",
"Models",
"Geography",
"Economics",
"Analysis",
"Frameworks",
"Adventures",
"Dynamics",
"Fundamentals",
"Unity",
"Sensing",
"Techniques"
]
articles = ['of']
#adjective
adjectives = ["Mathematical",
"Physical",
"Scientific",
"Psychological",
"Sociological",
"Pathological",
"Scatological",
"Unnecessarily Complicated",
"Heat",
"Organic",
"Inorganic",
"Mechanical",
"Quantum",
"Applied",
"Cell",
"Control",
"Living",
"Thermal",
"Solid State",
"Human",
"Quantitative",
"Mammalian",
"Linear",
"Hybrid",
"Global",
"Dimensional",
"General",
"Environmental",
"Remote",
"Modern",
"Connective",
"Integrated",
"Multidimensional",
"Fluid"
]
#subject
subjects = [
"Diversity",
"Mechanics",
"Transfer",
"Vibrations",
"Economics",
"Mathematics",
"Physics",
"Genetics",
"Electromagnetics",
"Geology",
"Biology",
"Engineering",
"Momentum",
"Ecology",
"Hydrogeology",
"Statics",
"Statistics",
"Probability",
"Calculus",
"Physiology",
"Analysis",
"Signals",
"Science",
"Life",
"Orbitals"
]
for i in range(10):
print('{} {} {} {} {}'.format(choice(adjectives),
choice(nouns),
choice(articles),
choice(adjectives),
choice(subjects)))