How to Add Visual Candy to Your Python Shell Scripts

Brendan Ferris
Python in Plain English
3 min readJun 6, 2021

--

Photo by Amy Shamblen on Unsplash

Sometimes, it’s necessary to add some visual output to Python scripts in order to provide users with feedback as to the progress of a program.

In this article, we are going to touch on two ways you can incorporate this feedback: progress bars and ANSI color codes. Using these two methods will allow you to build programs that look better, and provide a better user…

--

--