Pradeep Elance has Published 337 Articles

Collapsible Pane in Tkinter Python

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 12:03:15

1K+ Views

Tkinter is the GUI building library of python. In this article we will see how we can create a collapsible pane. They are usefult when we have some large amount of data to be displayed over a GUI canvas but we do not want to be displayed always. It is ... Read More

Binning method for data smoothing in Python

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 11:57:55

1K+ Views

Many times we use a method called data smoothing to make the data proper and qualitative for statistical analysis. During the smoking process we define a range also called bin and any data value within the range is made to fit into the bin. This is called the binning method. ... Read More

ASCII art using Python pyfiglet module

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 11:51:29

2K+ Views

The ASCII text can be used to display many stylish texts by using the module pyfiglet. After installing this module we can use it to control the font that can be used to display the result. In the below program we see various results by choosing various font types.Example# import ... Read More

Add one Python string to another

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 11:28:35

439 Views

By adding strings in python we just concatenate them to get a new string. This is useful in many scenarios like text analytics etc. Below are the two approaches we consider for this task.Using += OperatorThe + operator can be used for strings in a similar was as it is ... Read More

Add list elements with a multi-list based on index in Python

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 11:24:15

656 Views

Lists can be nested. Which means we have smaller lists as elements inside a bigger list. In this article we solve the challenge of adding the elements of a simple list to the elements of a nested list. If the length of the lists are different then the length of ... Read More

Add leading Zeros to Python string

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 11:22:50

692 Views

We may sometimes need to append zeros as string to various data elements in python. There may the reason for formatting and nice representation or there may be the reason for some calculations where these values will act as input. Below are the methods which we will use for this ... Read More

Add leading Zeros to Python Program string

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 10:29:31

317 Views

We may sometimes need to append zeros as string to various data elements in python. There may the reason for formatting and nice representation or there may be the reason for some calculations where these values will act as input. Below are the methods which we will use for this ... Read More

Add image on a Python Tkinter button

Pradeep Elance

Pradeep Elance

Updated on 18-Feb-2020 10:23:22

2K+ Views

Tkinter, which is the GUI library for python programming has a feature to add images to the GUI buttons. This is useful for users to remember the symbols in the GUI rather than the text in the GUI. In the below Tkinter program we show how we can add an ... Read More

Add trailing Zeros to a Python string

Pradeep Elance

Pradeep Elance

Updated on 14-Feb-2020 07:14:37

4K+ Views

As part of data processing activity we sometimes need to append one string with another. In this article we will see how to append dynamic number of zeros to a given string. This can be done by using various string functions as shown in the programs below.Using ljust and lenPython ... Read More

Programs for printing pyramid patterns in Python

Pradeep Elance

Pradeep Elance

Updated on 04-Feb-2020 07:35:31

2K+ Views

Taking advantage of the for loop and range function in python, we can draw a variety of for pyramid structures. The key to the approach is designing the appropriate for loop which will leave both vertical and horizontal space for the position of the symbol we choose for drawing the ... Read More

Advertisements