一、序言:
在實際開發過程中,我們經常會對一些字串進行加密,這裡就隨手寫了乙個 md5 加密方法,呼叫起來也很方便!---- nick.peng
二、實現**如下:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @author: nick
# @date: 2019-10-24 10:24:32
# @last modified by: nick
# @last modified time: 2019-10-24 10:50:45
defmd5_encode
(original_str)
:"""
功能:實現字串 md5加密
:param original_str:
:return:
"""m = hashlib.md5(
) m.update(original_str.encode(encoding=
'utf-8'))
return m.hexdigest(
)
python字串 Python 字串
建立字串很簡單,只要為變數分配乙個值即可。例如 var1 hello world var2 python runoob python訪問字串中的值python不支援單字元型別,單字元在 python 中也是作為乙個字串使用。python訪問子字串,可以使用方括號來擷取字串,如下例項 例項 pytho...
python字串 python字串
單引號示例常用的轉義字元 轉義字元案例1format 格式化練習1 help sisdigit,isnumeric,isdecimal 三個判斷數字的函式 isalnum 檢查字串是否由字母加數字組成 s test1split 字串拆分 splitlines 已換行符拆分 join 合成字串 upp...
Python實現字串反轉
題目描述 現有字串strs,現要將其進行反轉。輸入 abcde 輸出 edcba 方法一 使用字串切片 coding utf 8 strs input res strs 1 print res 方法二 使用join函式進行連線 coding utf 8 strs input strs list fo...