-
Notifications
You must be signed in to change notification settings - Fork 0
/
glowny.py~
84 lines (77 loc) · 2.33 KB
/
glowny.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
# Rightful code
class Jebaka:
my_dictionary = {"if": "jeżeli",
"else": "przeciwnie",
"then": "wtedy",
"for": "dla",
"loop": "zapętl",
"while": "podczas",
"do": "rób",
"define": "zdefiniuj",
"import": "importuj",
"main": "główna",
"class": "klasa",
"string": "łańcuch",
"integer": "całkowita",
"float": "ułamek",
"double": "długiułamek",
"byte": "bajt",
"array": "tablica",
"list": "lista",
"set": "zestaw",
"hash": "hasz",
"map": "mapa",
"include": "załącz",
"self": "sam",
"id": "identyfikator",
"def": "definicja"
}
def translate(self, line):
result = line
for elem in line.split(" "):
if len(elem) > 0:
if self.my_dictionary.get(elem, False):
result = result.replace(elem, self.my_dictionary[elem])
return result
def translate_2(self, line):
result=""
letters=line.list()
word=""
for letter in letters:
if letter.isalpha():
word+=letter
else:
if 0 < len(word):
if self.my_dictionary.get(word, False):
result+=word.replace(elem, self.my_dictionary[elem])
else:
result+=word
result+=letter
return result
def main(self):
#Odczyt nazwy pliku
file_name = input('Podaj nazwe pliku do przerobienia:')
#Odczyt pliku
text_file = ""
try:
text_file = open(file_name)
print("\nOdczytywac plik {}:".format(file_name))
except FileNotFoundError:
print('Nie ma takiego {0}..'.format(text_file))
return
# Przetworznie według kluczy ze słownika - linia po linii
i = 0
da_new_file = "";
for line in text_file:
print('Linia {0} : {1}..'.format(i, line))
#Tlumacz linie jako calosc
da_new_line = self.translate_2(line) + "\n"
print('przetłumaczona na: {0}'.format(da_new_line))
da_new_file += da_new_line
i+=1
text_file.close()
print("\n\nKoniec-Pliku")
#Zapis do pliku
if __name__ == "__main__":
a = Jebaka()
a.main()