'''o = bytes('helloworld','utf-8')r = o.center(20,'-')print(r)'''上面python代碼的第二行代碼報錯了,錯誤提示如下:r = o.center(20,'-')TypeError: center() argument 2 must be a byte string of length 1, not str錯誤提示說center()方法的第二個參數(shù)必須是長度為1的byte string。。有木有大神直到在python中怎么定義一個byte string。。
在python中定義一個字節(jié)字符串
函數(shù)式編程
2018-07-05 09:09:37