You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-10Lines changed: 18 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -982,15 +982,6 @@ from collections import deque
982
982
```
983
983
984
984
985
-
Hashlib
986
-
-------
987
-
```python
988
-
>>>import hashlib
989
-
>>> hashlib.md5(<str>.encode()).hexdigest()
990
-
'33d0eba106da4d3ebca17fcd3f4c3d77'
991
-
```
992
-
993
-
994
985
Threading
995
986
---------
996
987
```python
@@ -1014,6 +1005,15 @@ lock.release()
1014
1005
```
1015
1006
1016
1007
1008
+
Hashlib
1009
+
-------
1010
+
```python
1011
+
>>>import hashlib
1012
+
>>> hashlib.md5(<str>.encode()).hexdigest()
1013
+
'33d0eba106da4d3ebca17fcd3f4c3d77'
1014
+
```
1015
+
1016
+
1017
1017
Itertools
1018
1018
---------
1019
1019
**Every function returns an iterator and can accept any collection and/or iterator. If you want to print the iterator, you need to pass it to the list() function!**
0 commit comments