Pradeep Elance has Published 446 Articles

Python Checkbox widget in Kivy?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:21:28

415 Views

Kivy is an open source Python library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps. It is used to develop the Android application, as well as Desktops applications. In this article we will see how to use the GridLayout and CheckBox.After importing ... Read More

Python Check if suffix matches with any string in given list?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:17:24

276 Views

Many times we need to analyze if a given word is present in a given list. That helps us in further processing the business logic for the data. In this article we see how to find if a given suffix which is a string is present in a list with ... Read More

Memory-mapped file support in Python (mmap)?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:14:23

1K+ Views

When you read a file object to a python program and want to modify, it can be done in two ways. First way is to modify the content in the physical storage drive where the file is located and the second way is to modify it directly in the memory ... Read More

HyperText Markup Language support in Python?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:08:28

186 Views

Python has the capability to process the HTML files through the HTMLParser class in the html.parser module. It can detect the nature of the HTML tags their position and many other properties of the tags. It has functions which can also identify and fetch the data present in an HTML ... Read More

Python Get the real time currency exchange rate?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:04:42

9K+ Views

Python is very good at handling API calls. In this article we will see how we can handle the API calls for currency exchange rates in real time as well as historical.Using forex-pythonThis module provides the most direct way of getting the currency conversion rates. It has functions and parameters ... Read More

Python - Add Label to kivy window

Pradeep Elance

Pradeep Elance

Updated on 28-Dec-2020 11:25:51

525 Views

Kivy is an pen source Python library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps. It is used to develop the Android application, as well as Desktops applications. In this article we will see how to add labels to the windows created ... Read More

Python - Combine two lists by maintaining duplicates in first list

Pradeep Elance

Pradeep Elance

Updated on 28-Dec-2020 11:22:16

270 Views

In data analysis using python we may come across situation when two lists need to be merged. But it may be a challenge to handle the duplicate elements present in those lists. In this article we will see how to combine two lists by maintain all the elements form the ... Read More

Python - Convert 1D list to 2D list of variable length

Pradeep Elance

Pradeep Elance

Updated on 28-Dec-2020 11:20:56

2K+ Views

A list in python is normally a 1D list where the elements are listed one after another. But in a 2D list we have list nested inside the outer list. In this article we will see how to create a 2D list from a given 1D list. We also supply ... Read More

Python - Convert a list of lists into tree-like dict

Pradeep Elance

Pradeep Elance

Updated on 28-Dec-2020 11:19:45

927 Views

Given a nested list we want to convert it to a dictionary whose elements can be considered as part of a tree data structure. In this article we will see the two approaches to convert a nested list into to add dictionary whose elements represent a tree like data structure.Using ... Read More

Python - Convert flattened dictionary into nested dictionary

Pradeep Elance

Pradeep Elance

Updated on 28-Dec-2020 11:18:13

542 Views

Python dictionaries have keys and values. If we have two or more dictionaries to be merged a nested dictionary, then we can take the below approaches. Here year the dictionaries are given along with the new keys that will become a key in the nested dictionary.Assigning keysIn this approach we ... Read More

Advertisements