Арсен Жуматай,304 DahDit 11269
Жангирхан Шаку, 404 DahDit 11391
n1def to_morse(input_string, di, dah, dit, end):n1def morse_encode(input_string, di, dah, dit, end):
2    result = []2    result = []
3    for i in range(len(input_string)):3    for i in range(len(input_string)):
4        if input_string[i] == '-':4        if input_string[i] == '-':
5            result.extend(dah)5            result.extend(dah)
6            result.append(' ')6            result.append(' ')
7        elif input_string[i] == '+' and i == len(input_string) - 1:7        elif input_string[i] == '+' and i == len(input_string) - 1:
8            result.extend(dit)8            result.extend(dit)
9            result.append(' ')9            result.append(' ')
10        elif input_string[i] == '+' and i < len(input_string) - 1 and (i10        elif input_string[i] == '+' and i < len(input_string) - 1 and (i
>nput_string[i + 1] == '~'):>nput_string[i + 1] == '~'):
11            result.extend(dit)11            result.extend(dit)
12            result.append(' ')12            result.append(' ')
13        elif input_string[i] == '+':13        elif input_string[i] == '+':
14            result.extend(di)14            result.extend(di)
15            result.append(' ')15            result.append(' ')
16        elif input_string[i] == '~' and i != len(input_string) - 1:16        elif input_string[i] == '~' and i != len(input_string) - 1:
17            if result:17            if result:
18                result.pop()18                result.pop()
19            result.append(',')19            result.append(',')
20            result.append(' ')20            result.append(' ')
21    if result:21    if result:
22        result.pop()22        result.pop()
23    result.append(end)23    result.append(end)
24    return ''.join(result)24    return ''.join(result)
2525
n26def to_morse2(input_string, di, dah, dit, end):n26def morse_encode_alternate(input_string, di, dah, dit, end):
27    result = []27    result = []
28    for i in range(len(input_string)):28    for i in range(len(input_string)):
29        if input_string[i] == '-':29        if input_string[i] == '-':
30            result.extend(dah)30            result.extend(dah)
31        elif input_string[i] == '+' and i == len(input_string) - 1:31        elif input_string[i] == '+' and i == len(input_string) - 1:
32            result.extend(dit)32            result.extend(dit)
33        elif input_string[i] == '+' and i < len(input_string) - 1 and (i33        elif input_string[i] == '+' and i < len(input_string) - 1 and (i
>nput_string[i + 1] == '~'):>nput_string[i + 1] == '~'):
34            result.extend(dit)34            result.extend(dit)
35        elif input_string[i] == '+':35        elif input_string[i] == '+':
36            result.extend(di)36            result.extend(di)
37        elif input_string[i] == '~' and i != len(input_string) - 1:37        elif input_string[i] == '~' and i != len(input_string) - 1:
38            result.append(' ')38            result.append(' ')
39    result.append(end)39    result.append(end)
40    return ''.join(result)40    return ''.join(result)
4141
42class morse:42class morse:
4343
44    def __init__(self, input_string=None):44    def __init__(self, input_string=None):
45        self.dah = 'dah'45        self.dah = 'dah'
46        self.dit = 'dit'46        self.dit = 'dit'
47        self.di = 'di'47        self.di = 'di'
48        self.code = ''48        self.code = ''
49        self.end = '.'49        self.end = '.'
50        self.flag = 050        self.flag = 0
51        if input_string and ' ' not in input_string:51        if input_string and ' ' not in input_string:
52            self.flag = 152            self.flag = 1
53            if len(input_string) == 2:53            if len(input_string) == 2:
54                self.di, self.dah = (input_string[0], input_string[1])54                self.di, self.dah = (input_string[0], input_string[1])
55                self.dit = self.di55                self.dit = self.di
56                self.end = ''56                self.end = ''
57            elif len(input_string) == 3:57            elif len(input_string) == 3:
58                self.di, self.dit, self.dah = (input_string[0], input_st58                self.di, self.dit, self.dah = (input_string[0], input_st
>ring[1], input_string[2])>ring[1], input_string[2])
59                self.end = ''59                self.end = ''
60            else:60            else:
61                self.di, self.dit, self.dah, self.end = (input_string[0]61                self.di, self.dit, self.dah, self.end = (input_string[0]
>, input_string[1], input_string[2], input_string[3])>, input_string[1], input_string[2], input_string[3])
62        elif input_string:62        elif input_string:
63            if input_string[-1] == ' ':63            if input_string[-1] == ' ':
64                self.end = ''64                self.end = ''
65            elements = input_string.split()65            elements = input_string.split()
66            if len(elements) == 2:66            if len(elements) == 2:
67                self.di, self.dah = elements67                self.di, self.dah = elements
68                self.dit = self.di68                self.dit = self.di
69            elif len(elements) == 3:69            elif len(elements) == 3:
70                self.di, self.dit, self.dah = elements70                self.di, self.dit, self.dah = elements
71            else:71            else:
72                self.di, self.dit, self.dah, self.end = elements72                self.di, self.dit, self.dah, self.end = elements
7373
74    def __pos__(self):74    def __pos__(self):
75        self.code += '+'75        self.code += '+'
76        return self76        return self
7777
78    def __neg__(self):78    def __neg__(self):
79        self.code += '-'79        self.code += '-'
80        return self80        return self
8181
82    def __invert__(self):82    def __invert__(self):
83        self.code += '~'83        self.code += '~'
84        return self84        return self
8585
86    def __repr__(self):86    def __repr__(self):
87        if not self.code:87        if not self.code:
88            return '.'88            return '.'
89        elif self.flag == 0:89        elif self.flag == 0:
n90            return to_morse(self.code[::-1], self.di, self.dah, self.ditn90            return morse_encode(self.code[::-1], self.di, self.dah, self
>, self.end)>.dit, self.end)
91        else:91        else:
t92            return to_morse2(self.code[::-1], self.di, self.dah, self.dit92            return morse_encode_alternate(self.code[::-1], self.di, self
>t, self.end)>.dah, self.dit, self.end)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op