python21天打卡Day10-string和bytes互轉

a=‘21 python’ b=a.encode(‘utf-8’)#string轉爲bytes print(’{},{}’.format(b,type(b))) c=b’21 python’ d=c.decode(‘utf-8’) print(’{},{}’.format(d,type(d))) D:\學習\Python工程\venv\Scripts\python.exe D:/學習/Python
相關文章
相關標籤/搜索