In this episode you will learn how to use the configobj package. This is a 3rd party package that I think is better and easier to use than Python's built-in configparser module. You can also read the chapter this video is based on here or get the book on Leanpub Related Reading A Brief ConfigObj […]
In this episode, you will learn the basics of using Python's doctest and unittest modules. You can also read the chapter this video is based on here or get the book on Leanpub Related Articles Python 3 Testing: An Intro to unittest Python 102: An Intro to TDD and unittest
In this screencast you will learn the basics of profiling your code using Python's built-in cProfile module. You can read the chapter this screencast is based on here - http://python101.pythonlibrary.org/ or get a copy of the book on Leanpub.
September 26, 2018 by
Mike In this screencast you will learn how to use lambdas in Python. You can read the chapter this screencast is based on here: http://python101.pythonlibrary.org/ or purchase the book on Leanpub Related Articles Python 101: Lambda Basics The Python Lambda
September 20, 2018 by
Mike In this episode, you will learn the basics of Python decorators and what the are good for. You can read the chapter this screencast is based on here: http://python101.pythonlibrary.org/ or purchase the book on Leanpub You can also read about decorators in a couple of other articles on my blog: Python: All About Decorators Python […]
September 11, 2018 by
Mike Learn the basics of using Python's built-in debugger, pdb. Note that this screencast was recorded before Python 3.6 and 3.7 so it does not cover some of the new enhancements in the debugger. You can read the chapter this screencast is based on here: http://python101.pythonlibrary.org/chapter24_debugging.html