The Map Function
You have a list of strings that are numbers and you need to get a sumation of those...
Obfuscation with enumerate and XOR
The enumerate function can be used to XOR characters of text with characters of a key. The example...
Bitwise Operators with f-strings and format()
Since Python 3.6, we can use f-strings to evaluate expressions inside string literals and easily print out the...
Binary and Hexadecimal Number Assignments
Sometimes we need to work with binary and/or hexadecimal numbers in Python. Maybe we are designing a program...