-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrandom.py
146 lines (113 loc) · 4.12 KB
/
random.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
import re
class Random:
@staticmethod
def remove_trailing_chars_by_set(input_text, charset):
# todo this is not used not tested
pattern_trail = re.compile(r"["+charset+"]+$")
trailing_chars = pattern_trail.findall(input_text)
if len(trailing_chars) >= 1:
new_input_text = input_text[0:len(input_text)-len(trailing_chars)]
input_text = new_input_text
return input_text
@staticmethod
def remove_trailing_chars_by_count(input_text, count):
new_input_text = input_text[0:len(input_text)-count]
return new_input_text
@staticmethod
def remove_starting_chars_by_count(input_text, count):
new_input_text = input_text[count:]
return new_input_text
@staticmethod
def is_special_character(text):
if type(text) == int:
return False
if text is None or text is False or text is True:
return False
if len(text) > 1:
return False
is_alphanumberical = text.isalnum()
if is_alphanumberical:
return False
else:
return True
@staticmethod
def is_alphanumerical_character(text):
if type(text) == int:
return False
if text is None or text is False or text is True:
return False
if len(text) > 1:
return False
is_alphanumberical = text.isalnum()
if is_alphanumberical:
return True
else:
return False
@staticmethod
def has_special_character(text):
text_list = list(text)
for char in text_list:
is_sc = Random.is_special_character(char)
if is_sc:
return True
return False
@staticmethod
def printc(*args, print_output):
"""
Print conditionally if print_output is True
:param args:
:param print_output:
:return:
"""
if print_output is True:
print(*args)
@staticmethod
def is_false_true_or_none(value):
if value is False or value is True or value is None:
return True
return False
@staticmethod
def replace_value_in_tuple(tuple_in, value, index):
tuple_l = list(tuple_in) # make a[0] mutable
tuple_l[index] = value # now new assignment will be valid
ret_val= tuple(tuple_l) # make a[0] again a tuple
return ret_val
@staticmethod
def append_pad_values(text, padding_length, padding_char='¦'):
new_text = text
for index in range(0, padding_length):
new_text += padding_char
return new_text
@staticmethod
def find_middle(length_of_list, to_lower):
"""
Finds the middle index of a list
:return: middle index if list has unequal size. lower and higher index tuple is equal sitze
"""
middle = float(length_of_list)/2
if middle % 2 != 0:
return int(middle - .5)
else:
low_middle = int(middle-1)
high_middle = int(middle)
if to_lower:
return low_middle
else:
return (low_middle, high_middle)
@staticmethod
def add_to_mean(overall_value, current_value, overall_count, current_count):
"""
Adds a mean of a number of values to an existing mean, and adapts the outcoming mean
based on the number of the additional values
:param overall_value: overall mean
:param current_value: additional value to add
:param overall_count: number of values the original mean was calculated
:param current_count: number of values the additional mean was calculated
:return: new calculated mean, new number of values
"""
new_overall_counter = (overall_value * overall_count) + \
(current_value * current_count)
new_overall_divisor = overall_count + current_count
new_overall_value = new_overall_counter / new_overall_divisor
new_overall_count = overall_count + current_count
return new_overall_value, new_overall_count