https://mk8.danbocdncdn.top:2330 \t https://v5k.danbocdncdn.xyz:2331 转换为字节流
时间: 2024-01-30 09:03:55 浏览: 157
mmc.zip_EMMC/TFlash_MMC-HVDC_SD_android_site:www.pudn.com
可以使用Python中的`bytes`方法将字符串转换为字节流。例如,将第一个字符串转换为字节流:
```python
bytes_str = b'https://mk8.danbocdncdn.top:2330 \t https://v5k.danbocdncdn.xyz:2331'
byte_stream = bytes(bytes_str)
print(byte_stream)
```
输出:
```
b'https://mk8.danbocdncdn.top:2330 \t https://v5k.danbocdncdn.xyz:2331'
```
需要注意的是,`\t`代表制表符,它也会被转换为字节流中的相应字符。
阅读全文