-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlashcardProgramV2.py
239 lines (176 loc) · 8.13 KB
/
FlashcardProgramV2.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
def open_files():
'''Open a file specified by the user and open a file to write the data.'''
# Get a file name.
file_name = input("Enter the name of the file to open: ")
valid_file = False
# Make sure it is a valid file and continue to prompt if it isn't.
while not valid_file:
try:
read_file = open(file_name)
# The write file name is the name of the open file with
# "-Finished.txt" appended to the end. The initial file extension
# is removed for the write file.
write_file_name = file_name[:file_name.index(".")] + "-Finished.txt"
write_file = open(write_file_name, "w+")
valid_file = True
# Reprompt if the file name is incorrect.
except FileNotFoundError:
file_name = input("Sorry, this file cannot be found. Please try again: ")
return read_file, write_file
def extract_data(file):
'''Takes a file as input and puts each line into a list.'''
return_list = []
for line in file:
return_list.append(line)
# Appends a $ to the end of the list so that the end of the document can be
# easily found.
return_list.append("$")
return return_list
def find_last_of(string, char):
'''Finds the last instance of the given char in the given string. Returns
the index of the last instance of the character.'''
char = char
string = string
index = 0
for i, c in enumerate(string):
if c == char:
index = i
return index
def is_simple(line):
'''Returns True if the line is simple, false otherwise.'''
line = line.strip()
if ("-" in line) and (line[-1] != "-"):
return True
elif (":" in line) and (line[-1] != ":"):
return True
elif ("?" in line) and (line[-1] != "?"):
return True
else:
return False
def is_complex(line):
'''Returns True if the line is complex, false otherwise.'''
line = line.strip()
if "-" == line[-1]:
return True
elif ":" == line[-1]:
return True
elif "?" == line[-1]:
return True
else:
return False
def is_neither(line):
'''Returns True if the line is neither complex nor simple, false otherwise.'''
line = line.strip()
if (not is_complex(line)) and (not is_simple(line)):
return True
else:
return False
def organize_data(file_list):
'''Takes the file list and returns a dictionary of all of the questions as
keys and answers as values.'''
file_list = file_list
q_a_dict = {}
question = ""
answer = ""
true_index = 0 # Keeps track of the index of the most recent line.
# Loops through the file list.
for i, line in enumerate(file_list):
if i == true_index:
true_index += 1
if "-" in line:
# Question is one line, answer is another.
if is_complex(line):
# Removes the last character and excess whitespace.
question = line[:-1].strip()
answer = ""
# Continues to add lines to the answer until a new question
# is found or the end of the list is found.
while is_neither(file_list[true_index]) and file_list[true_index] != "$":
answer += file_list[true_index].strip() + "\n"
true_index += 1
answer = answer[:-1]
# Question and answer are on the same line.
else:
# Finds where the question ends and answer begins, then
# seperates them.
split_index = find_last_of(line, "-")
question = line[:split_index].strip()
answer = line[split_index + 1:].strip()
# Adds the questions and answers to a dictionary.
q_a_dict[question] = answer
elif ":" in line:
# Question is one line, answer is another.
if is_complex(line):
# Removes the last character and excess whitespace.
question = line[:-1].strip()
answer = ""
# Continues to add lines to the answer until a new question
# is found or the end of the list is found.
while is_neither(file_list[true_index]) and file_list[true_index] != "$":
answer += file_list[true_index].strip() + "\n"
true_index += 1
answer = answer[:-1]
# Question and answer are on the same line.
else:
# Finds where the question ends and answer begins, then
# seperates them.
split_index = find_last_of(line, ":")
question = line[:split_index].strip()
answer = line[split_index + 1:].strip()
# Adds the questions and answers to a dictionary.
q_a_dict[question] = answer
elif "?" in line:
# Question is one line, answer is another.
if is_complex(line):
# Removes the last character and excess whitespace.
question = line[:-1].strip()
answer = ""
# Continues to add lines to the answer until a new question
# is found or the end of the list is found.
while is_neither(file_list[true_index]) and file_list[true_index] != "$":
answer += file_list[true_index].strip() + "\n"
true_index += 1
answer = answer[:-1]
# Question and answer are on the same line.
else:
# Finds where the question ends and answer begins, then
# seperates them.
split_index = find_last_of(line, "?")
question = line[:split_index].strip()
answer = line[split_index + 1:].strip()
# Adds the questions and answers to a dictionary.
q_a_dict[question] = answer
# Keeps the end of list character from interfering with normal
# operations.
elif line == "$":
pass
# Basic message to use to signify that there is not a '-', ':', or
# '?' character in the given line.
else:
print("Unrecognized symbol in line " + str(i + 1) + ".")
print("Line is:", line)
return q_a_dict
def output_data(file_dict, out_file):
'''Takes the dictionary of questions and answers and then writes them to
the output file.'''
file_dict = file_dict
out_file = out_file
# Writes the question and answer to the output file. This has the basic
# formatting, only enough to differentiate the question and answer and
# seperate cards.
for q, a in file_dict.items():
print("{}@{}~!".format(q, a), file = out_file)
def main():
'''This is the overall program.'''
# Opens the read and write files.
read_file, write_file = open_files()
# Gets all the lines in the file.
file_list = extract_data(read_file)
# Gets a dictionary of all of the questions and answers.
file_dict = organize_data(file_list)
# Writes to the write file.
output_data(file_dict, write_file)
read_file.close()
write_file.close()
if __name__ == "__main__":
main()