如何将代码0x412下的字母B转换为Python3中的普通B字母(代码0x42)?

时间:2018-06-18 19:17:01

标签: python-3.x

我遇到了一个从互联网上复制的相当奇怪的现象(B),不同于我个人电脑上输入的字母B,如何将字母B从互联网转换成普通的B字母,谢谢! / p>

1 个答案:

答案 0 :(得分:1)

您可以使用 it('should call the getFilteredProductValues on value change', () => { spyOn(component as any, ' getFilteredProductValues').and.callThrough(); component.Product.controls['ProductName'].setValue('ABC'); expect((component as any). getFilteredProductValues).toHaveBeenCalled(); });

str.replace

如果你有很多这样的替换,你也可以使用翻译表

print('Вaby'.replace('\u0412', 'B'))
# Baby