Pradeep Elance has Published 446 Articles

Create a Pandas Dataframe from a dict of equal length lists in Python

Pradeep Elance

Pradeep Elance

Updated on 26-Aug-2020 06:39:17

236 Views

The Dataframe in pandas can be created using various options. One of the option is to take a dictionary and convert it to a Dataframe. In this article we will see how to take three lists of equal length and convert them to a pandas dataframe using a python dictionary.Uisng ... Read More

Python to create a digital clock using Tkinter

Pradeep Elance

Pradeep Elance

Updated on 26-Aug-2020 06:35:01

2K+ Views

Python Tkinter can be used to create all kinds of GUI programs for the web and desktop. In this article we will see how to create a digital clock displaying hour, minute and seconds live.We use the time module to import the method strftime which displays the time in Hour, ... Read More

Progressbar widget in Python Tkinter

Pradeep Elance

Pradeep Elance

Updated on 26-Aug-2020 06:28:14

819 Views

The progressbar is a common GUI element which is used to show the progress of certain task. In tis article we will see how to create a progressbar using the Python tkinter GUI library.In the below program we have imported the progressbar sub-module of tkinter.ttk module. Then used the style ... Read More

Argument Parsing in Python

Pradeep Elance

Pradeep Elance

Updated on 26-Aug-2020 06:25:32

2K+ Views

Every programming language has a feature to create scripts and run them from the terminal or being called by other programs. When running such scripts we often need to pass on arguments needed by the script for various functions to be executed inside the script. In this article we will ... Read More

Add style to Python tkinter button

Pradeep Elance

Pradeep Elance

Updated on 26-Aug-2020 06:22:39

3K+ Views

Tkinter has great support for creating the GUI programs based on python. It offers different ways of styling a button on the Tkinter canvas based on its font, size, colour etc. In this article we will see how to apply style to specific buttons or all buttons in general on ... Read More

Python - Filtering data with Pandas .query() method

Pradeep Elance

Pradeep Elance

Updated on 22-Jul-2020 08:41:05

2K+ Views

Pandas is a very widely used python library for data cleansing, data analysis etc. In this article we will see how we can use the query method to fetch specific data from a given data set. We can have both single and multiple conditions inside a query.Reading the dataLet’s first ... Read More

Python - Filter out integers from float numpy array

Pradeep Elance

Pradeep Elance

Updated on 22-Jul-2020 08:36:16

365 Views

As part of data cleansing activities, we may sometimes need to take out the integers present in a list. In this article we will have an array containing both floats and integers. We will remove the integers from the array and print out the floats.With astypeThe astype function will be ... Read More

Python - Filter dictionary key based on the values in selective list

Pradeep Elance

Pradeep Elance

Updated on 22-Jul-2020 08:34:33

1K+ Views

Sometimes in a Python dictionary we may need to to filter out certain keys of the dictionary based on certain criteria. In this article we will see how to filter out keys from Python dictionary.With for and inIn this approach we put the values of the keys to be filtered ... Read More

Python - fabs() vs abs()

Pradeep Elance

Pradeep Elance

Updated on 22-Jul-2020 08:32:37

1K+ Views

Both abs() and fabs() represent the mathematical functions which give us the absolute value of numbers. But there is a subtle difference between both of them which we can explore in the exmaples below.ExampleThe abs() functions returns the absolute value as an integer or floating point value depending on what ... Read More

Python - end parameter in print()

Pradeep Elance

Pradeep Elance

Updated on 22-Jul-2020 08:30:56

738 Views

The print() function in python always creates a newline. But there is also a parameter for this function which can put other characters instead of new line at the end. In this article we will explore various options for this parameter.ExampleIn the below example we see various ways we can ... Read More

Advertisements