Skip to main content

101

Comprehension in Python
·361 words·2 mins
Posts 101 oneliner python
List and Dict comprehension in Python.
Module vs Package vs Library
·53 words·1 min
Posts 101 python
Quick differences among a module, a package, and libary in Python.
Passkeys 101
·675 words·4 mins
Posts 101 passkeys passwordless
There is nothing to be phished if you don’t use password at all.
Python Package
·223 words·2 mins
Posts Essential 101 python
Fundamental building block for Python package.
Why __name__ == '__main__'?
·323 words·2 mins
Posts Essential 101 python
Wonder why we always start with if __name__ == '__main__': in Python?