Published onJanuary 25, 2021Blank filling issue with `center()` functionPython`center()` function fills the space with blanks while centering.
Published onJanuary 13, 2021How to check installed modules in PythonPythonpip list, pip freeze, pydoc modules, python -c 'help("modules")'
Published onJanuary 12, 2021Understanding `Variable-length unpacking` in PythonPythonx, y, *z = [1, 2, 3, 4, 5]
Published onJanuary 11, 2021Swapping list elements using `Tuple Unpacking` in PythonPythonx, y = y, x