Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Создаем пустой словарь
- alphabet_map = {}
- # Перебираем русский алфавит
- for i, letter in enumerate(' АБВГДЕЖЗИКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ'):
- # Преобразуем индекс в бинарное представление
- binary = bin(i)[2:]
- # Добавляем букву и ее бинарное представление в словарь
- alphabet_map[letter] = binary.zfill(5)
- if letter=='Е':
- alphabet_map['Ё'] = alphabet_map[letter]
- elif letter == 'И':
- alphabet_map['Й'] = alphabet_map[letter]
- for letter, binary in alphabet_map.items():
- print(f"{letter}: {binary}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement