Pradeep Elance has Published 445 Articles

Python - Create Test DataSets using Sklearn

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:19:19

271 Views

The Sklearn python library does provide sample data sets which can be used tocreate various graph plots. The usefulness of these datasets is in creating sample graphs and charts and predicting the behavior of the graph as the values changes. Also you can work on other parameters like deciding on ... Read More

Find maximum length sub-list in a nested list in Python

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:18:06

722 Views

we often deal with nested lists when doing data analysis in python. In this article, we will see how to find out the longest list among the elements in a nested list and then print this along with its length.Using lambda and mapWe declare a nested list and give it ... Read More

Creating a Proxy Webserver in Python

Pradeep Elance

Pradeep Elance

Updated on 25-Jan-2021 07:14:41

2K+ Views

A proxy server sits in between the client and the actual server. It receives the requests from the client, send it to the actual server, and on receiving the response from the actual server it sends the response back to the client. There are many reasons to use the proxy ... Read More

Python Generate QR Code using pyqrcode module?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:46:33

386 Views

A QR code consists of black squares arranged in a square grid on a white background, which can be read by an imaging device such as a camera. It is widely used for many commercial tracking applications and payment and website login etc. for various applications aimed at mobile-phone users. ... Read More

Python Front and rear range deletion in a list?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:44:05

111 Views

Using list slicingIn this approach we use slicing from both the front and rear of the list. The result is stored into a new list. The number of elements to be sliced can be a variable.Example Live DemolistA = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] # Given list print("Given ... Read More

Python Float Layout in Kivy?

Pradeep Elance

Pradeep Elance

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

474 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 FloatLayout widget to create ... Read More

Python file parameter in print()?

Pradeep Elance

Pradeep Elance

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

698 Views

The regular use of the print() function is to display text either in the command-line or in the interactive interpreter. But the same function can also write into a file or an output stream.Printing to fileIn the example we can open a file with a new filename in write mode ... Read More

Python Extract specific keys from dictionary?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:33:40

2K+ Views

Dictionaries are most extensively used data structures in python. They contain data in form of keys and values. In this example we will see how to get the items form a dictionary specific to a given set of keys.With dictionary comprehensionIn this approach we simply loop through the dictionary using ... Read More

Python Count set bits in a range?

Pradeep Elance

Pradeep Elance

Updated on 12-Jan-2021 13:31:45

189 Views

A given positive number when converted to binary, has a number of setbits. Set bits in a binary number is represented by 1. In this article we will see how to get the number of setbits in a given number after it is converted to binary value.Using bin and slicingIn ... Read More

Python Convert nested dictionary into flattened dictionary?

Pradeep Elance

Pradeep Elance

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

2K+ Views

As the world embraces more unstructured data, we come across many formats of data where the data structure can be deeply nested like nested JSONS. Python has the ability to deal with nested data structure by concatenating the inner keys with outer keys to flatten the data. In this article ... Read More

Advertisements