Comments on: 10 Useful Python One-Liners You Must Know https://www.maketecheasier.com/useful-python-one-liners/ Uncomplicating the complicated, making life easier Mon, 04 Jul 2022 00:38:28 +0000 hourly 1 https://wordpress.org/?v=6.0.1 By: ShakiestNerd https://www.maketecheasier.com/useful-python-one-liners/#comment-101415 Mon, 04 Jul 2022 00:38:28 +0000 https://admin.maketecheasier.com/?p=443804#comment-101415 Item 2: Factorial
>>> from math import factorial
>>> factorial(42)

The lambda is cool, but using the factorial function from the math module is very speedy.

]]>
By: ablam https://www.maketecheasier.com/useful-python-one-liners/#comment-101126 Thu, 23 Jun 2022 11:46:56 +0000 https://admin.maketecheasier.com/?p=443804#comment-101126 ad 6: list(range(0, 10))
ad 10. binascii.unhexlify(my_hex_string).decode()

]]>