我在寻找格式化的字节字符串文字。具体来说,相当于
name = "Hello"
bytes(f"Some format string {name}")
可能类似于
fb"Some format string {name}"
。这样的事情存在吗?
最佳答案
编号The idea is explicitly dismissed in the PEP:
关于python - Python 3.6+中是否有格式化的字节字符串文字?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45360480/