-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables_and_values.py
More file actions
96 lines (85 loc) · 6.42 KB
/
variables_and_values.py
File metadata and controls
96 lines (85 loc) · 6.42 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
# Create a Python file that only stores variables and their values, so we can import
# all these variables and values into our Monster_Class_Act.py Python file and use
# them within our Monster_Class_Act.py Python file through this variables_and_
# values.py Python file here. We can take our variables and their values into our
# Monster_Class_Act.py Python file, without having them physically inside the
# Monster_Class_Act.py Python file.
main_class = (
'This is an instance of a main class object with three attribute properties value 1',
'This is an instance of a main class object with three attribute properties value 2',
'This is an instance of a main class object with three attribute properties value 3')
sub_class1 = (
'This is an instance of a sub class1 object with three attribute properties value 1',
'This is an instance of a sub class1 object with three attribute properties value 2',
'This is an instance of a sub class1 object with three attribute properties value 3')
sub_class2 = (
'This is an instance of a sub class2 object with three attribute properties value 1',
'This is an instance of a sub class2 object with three attribute properties value 2',
'This is an instance of a sub class2 object with three attribute properties value 3')
super_sub_class1 = (
'This is an instance of a super sub class1 object with four attribute properties value 1',
'This is an instance of a super sub class1 object with four attribute properties value 2',
'This is an instance of a super sub class1 object with four attribute properties value 3',
'This is an instance of a super sub class1 object with four attribute properties value 4')
super_sub_class2 = (
'This is an instance of a super sub class2 object with five attribute properties value 1',
'This is an instance of a super sub class2 object with five attribute properties value 2',
'This is an instance of a super sub class2 object with five attribute properties value 3',
'This is an instance of a super sub class2 object with five attribute properties value 4',
'This is an instance of a super sub class2 object with five attribute properties value 5')
super_sub_class3 = (
'This is an instance of a super sub class3 object with six attribute properties value 1',
'This is an instance of a super sub class3 object with six attribute properties value 2',
'This is an instance of a super sub class3 object with six attribute properties value 3',
'This is an instance of a super sub class3 object with six attribute properties value 4',
'This is an instance of a super sub class3 object with six attribute properties value 5',
'This is an instance of a super sub class3 object with six attribute properties value 6')
super_sub_class4 = (
'This is an instance of a super sub class4 object with seven attribute properties value 1',
'This is an instance of a super sub class4 object with seven attribute properties value 2',
'This is an instance of a super sub class4 object with seven attribute properties value 3',
'This is an instance of a super sub class4 object with seven attribute properties value 4',
'This is an instance of a super sub class4 object with seven attribute properties value 5',
'This is an instance of a super sub class4 object with seven attribute properties value 6',
'This is an instance of a super sub class4 object with seven attribute properties value 7')
super_sub_class5 = (
'This is an instance of a super sub class5 object with eight attribute properties value 1',
'This is an instance of a super sub class5 object with eight attribute properties value 2',
'This is an instance of a super sub class5 object with eight attribute properties value 3',
'This is an instance of a super sub class5 object with eight attribute properties value 4',
'This is an instance of a super sub class5 object with eight attribute properties value 5',
'This is an instance of a super sub class5 object with eight attribute properties value 6',
'This is an instance of a super sub class5 object with eight attribute properties value 7',
'This is an instance of a super sub class5 object with eight attribute properties value 8')
super_sub_class6 = (
'This is an instance of a super sub class6 object with nine attribute properties value 1',
'This is an instance of a super sub class6 object with nine attribute properties value 2',
'This is an instance of a super sub class6 object with nine attribute properties value 3',
'This is an instance of a super sub class6 object with nine attribute properties value 4',
'This is an instance of a super sub class6 object with nine attribute properties value 5',
'This is an instance of a super sub class6 object with nine attribute properties value 6',
'This is an instance of a super sub class6 object with nine attribute properties value 7',
'This is an instance of a super sub class6 object with nine attribute properties value 8',
'This is an instance of a super sub class6 object with nine attribute properties value 9')
super_sub_class7 = (
'This is an instance of a super sub class7 object with ten attribute properties value 1',
'This is an instance of a super sub class7 object with ten attribute properties value 2',
'This is an instance of a super sub class7 object with ten attribute properties value 3',
'This is an instance of a super sub class7 object with ten attribute properties value 4',
'This is an instance of a super sub class7 object with ten attribute properties value 5',
'This is an instance of a super sub class7 object with ten attribute properties value 6',
'This is an instance of a super sub class7 object with ten attribute properties value 7',
'This is an instance of a super sub class7 object with ten attribute properties value 8',
'This is an instance of a super sub class7 object with ten attribute properties value 9',
'This is an instance of a super sub class7 object with ten attribute properties value 10')
return_values = (
'"The Main Class Act"',
'Sub Class Act One.',
'Sub Class Act Two',
'Super Sub Class Act One',
'Super Sub Class Act Two',
'Super Sub Class Act Three',
'Super Sub Class Act Four',
'Super Sub Class Act Five',
'Super Sub Class Act Six',
'Super Sub Class Act Seven')