micropython-lib/python-stdlib/string/test_translate.py

4 wiersze
113 B
Python
Czysty Zwykły widok Historia

2016-02-02 22:24:36 +00:00
import string
assert string.translate("foobar", {ord("o"): "foo", ord("b"): 32, ord("r"): None}) == "ffoofoo a"