md5 Python代码
时间: 2023-11-05 19:07:45 浏览: 134
可以使用Python内置的hashlib库来生成MD5摘要。以下是一个简单的示例代码:
```python
import hashlib
string = "Hello world"
hash_object = hashlib.md5(string.encode())
md5_hash = hash_object.hexdigest()
print("MD5 hash of '%s': %s" % (string, md5_hash))
```
输出结果:
```
MD5 hash of 'Hello world': ed076287532e86365e841e92bfc50d8c
```
阅读全文