-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions_module.py
72 lines (55 loc) · 1.67 KB
/
functions_module.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
#!/usr/bin/env python
def count_of_keys_available(file_name):
"""
Count the number of non-blank and non-comment lines in a file.
By comment, we mean the lines starting with '#'.
:param file_name: string
:return: int
"""
with open(file_name, 'r') as f:
lines = f.readlines()
count_of_lines_starting_with_a_key = len(
[line for line in lines if (line.strip(' \n') != '' and line[0] != '#')])
f.close()
return count_of_lines_starting_with_a_key
def convert_each_file_line_to_a_list_item(file_name):
"""
Convert each file line, into a list item.
:param file_name:
:return: list
"""
try:
with open(file_name) as the_file:
the_file_lines = the_file.readlines()
the_file.close()
return the_file_lines
except Exception as error:
return error
def make_a_list_from_the_file_keys(file_name):
"""
Make a list from the file keys.
:param file_name:
:return: list
"""
try:
the_file = []
for line in convert_each_file_line_to_a_list_item(file_name):
equal_index = line.find('=')
file_key = line[:equal_index]
the_file.append(file_key)
return the_file
except Exception as error:
return error
def make_a_list_from_uncommon_items(list1, list2):
"""
Make a list from uncommon items between two lists.
:param list1:
:param list2:
:return: list
"""
try:
if len(list1) - len(list2) >= 0:
return list(set(list1) - set(list2))
return list(set(list2) - set(list1))
except Exception as error:
return error