Syntax Highlighting is a very much useful if you put code on your website. This can be easily achived with django-pygments. over 300 languages are supported. List of supported Languages: http://pygments.org/languages/ django-pygments is the implementation of the pygments syntax highlighter for…
Category: python
How to make a gui Calculator in Python using Tkinter
I have written a basic & simple GUI calculator in python using Tkinter module. Since Tkinter is cross-platform so it works on both windows and Linux. If you are a beginner, and want to learn some basic GUI with python,…
How to install and use Tkinter in ubuntu / Debian / Linux mint
Tkinter is a GUI module for python. you can use it to make GUI based applications in python. Tkinter provides several GUI widgets like buttons,menu, canvas,text,frame,label etc. to develop desktop applications.Though Tkinter is very popular and is included with windows,…