Hot off the press! The 3rd edition of Automate the Boring Stuff with Python has just been released. Thanks to everyone who made it happen! https://t.co/GwKrytbba0
Big news! The 3rd edition of Automate the Boring Stuff with Python is out now! Grab your copy and start coding smarter, not harder. https://t.co/GwKrytaDks
#Python includes a handy `secrets` module which "is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens"
Here's an example:
#Python Pop Quiz 🐍❓
What is the output of this crazy code?
A) [[0, 0, 0], [0, 0, 0], [0, 0, 0]]
B) [['python', 0, 0], ['python', 0, 0], ['python', 0, 0]]
C) [[0, 'python', 0], [0, 'python', 0], [0, 'python', 0]]
D) What the heck!?