decode()方法使用註冊編碼的編解碼器的字串進行解碼。它預設為預設的字串編碼。
語法以下是decode()方法的語法:
str.decode(encoding='utf-8',errors='strict')
引數返回值
此方法返回的字串的解碼版本。
例子下面的例子顯示了decode()方法的使用。
#!/ufewf**kwdhsr/bin/python
str = "this is string example....wow!!!";
str = str.e程式設計客棧ncode('base64','strict');
print "encoded string: " + str;
print "decoded string: " + str.decode('base64','strict')
當我們執行上面的程式,它會產生以下結果:
程式設計客棧encoded s dghpcybpcybzdhjpbmcgzxhhbxbszs4uli53b3chise=
decoded string: th程式設計客棧is is string example....wow!!!
本文標題: 簡單介紹python中的decode()方法的使用
本文位址:
Python編碼介紹 encode和decode
宣告如下 code utf 8 因為python 只檢查 coding 和編碼字串,所以你可能回見到下面的宣告方式,這是有些人為了美觀等原因才這樣寫的 coding utf 8 常見編碼介紹 編碼轉換 python內部的字串一般都是 unicode編碼。中字串的預設編碼與 檔案本身的編碼是一致的。所...
Python中class的簡單介紹
類的定義 python class簡單操作 為了學習python中class,我們編寫乙個簡單的程式。我們的任務是找到stduents.txt檔案中,gpa最高的那名同學,並列印出他的資訊 其中students.txt檔案中的內容如下 zhangsan 127 228 lisi 100 400 wa...
Python中的lambda的簡單介紹
在學習python的過程中,lambda的語法經常出現,現在將它整理一下,以備日後檢視。舉個例子如下 1 func lambda x x 1 2print func 1 3 24print func 2 5 367 以上lambda等同於以下函式 8def func x 9return x 1 可以...