-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex23.py
More file actions
23 lines (16 loc) · 793 Bytes
/
Copy pathex23.py
File metadata and controls
23 lines (16 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
script, encoding, error = sys.argv
def main(language_file, encoding, errors):
line = language_file.readline()
if line:
print_line(line, encoding, errors)
return main(language_file, encoding, errors)
def print_line(line, encoding, errors):
# The strip() method returns a copy of the string in which all chars have been stripped from the beginning and the end of the string (default whitespace characters)
# Therefore the whitespace charactars (like \n) are removed using strip()
next_lang = line.strip()
raw_bytes = next_lang.encode(encoding)
cooked_string = raw_bytes.decode(encoding, errors = errors)
print(raw_bytes, "<==>", cooked_string)
languages = open("languages.txt", encoding="utf-8")
main(languages, encoding, error)