Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个滚动的 LED 标志,可以从自定义代码页获取 ASCII 或(使用某些特定代码)字符的消息。
例如,欧元符号应发送为
<U00>
并且 ä 是
<U64>
(您可以在文档中找到完整的代码页)
我的问题是,实现此自定义代码页并拥有可以将 UTF 字符串转换为我的自定义代码页的编解码器的最 Pythonic 方式是什么?