#result = data.decode('gbk2312')
'''print(type(data))
result = data.decode('utf-8')
print(type(result))
if '登陸'.encode('gbk') in result:
print("163登陸成功")
else:
print("登陸失敗")
result = data.decode('gbk') #sohu gbk編碼
result = data.decode("utf-8") #新華網 utf-8編碼
result = data.decode("gb2312") #人民網 gb2312
print(result)
python返回 python 返回函式
返回函式 1.高階函式除了能夠接收函式作為引數外,還能把函式作為結果返回 2.例如乙個求和函式,通常情況下的定義以及呼叫 def sum nums x 0for n in nums x x n return x sum 1,2,3,4,5 不返回求和的結果,而是返回求和的函式 def sum 1 n...
python 位元組編碼 python編碼
參考文章 python編碼 encode 將unicode字元按照編碼規則 如utf 8 編成位元組序列。a u 測試 a.encode utf 8 xe6 xb5 x8b xe8 xaf x95 python解碼 decode 將位元組序列按照編碼規則 如utf 8 解釋成unicode。a b ...
python返回方法 python 之返回函式
函式作為返回值 高階函式除了可以接受函式作為引數外,還可以把函式作為結果值返回。我們來實現乙個可變引數的求和。通常情況下,求和的函式是這樣定義的 def calc sum args ax 0 for n in args ax ax n return ax 但是,如果不需要立刻求和,而是在後面的 中,...