ensp字符python
时间: 2023-10-13 09:06:40 浏览: 108
华为HCIA所需软件-eNSP\python\VritualBox\WinPcap\Wireshark
在 Python 中,可以使用 `\u2002` 或 `\N{EN SPACE}` 来表示 en space 字符。例如:
```python
# 使用 \u2002 表示 en space
en_space = '\u2002'
print('Hello{0}world'.format(en_space))
# 使用 \N{EN SPACE} 表示 en space
en_space = '\N{EN SPACE}'
print('Hello{0}world'.format(en_space))
```
输出:
```
Hello world
Hello world
```
阅读全文