In this blog we will learn to add colors in foreground and background of text Python IDLE . First we have to install colored library using pip command. pip install colored After installing library we have to import colored library then using colored.fg('color_name') function foreground color of text can be changed. To change background of... Continue Reading →
Turtle Graphics — Graphic/Animation in Python
In this blog we build a circular design using turtle module , it's a in-built module in python so we doesn't install it using pip command. We built a simple circular design within 15-20 lines of code using turtle module and for loop. First of all we import turtle module import turtle and then create... Continue Reading →