Pradeep Elance has Published 417 Articles

Convert string enclosed list to list in Python

Pradeep Elance

Pradeep Elance

Updated on 04-Jun-2020 11:11:47

630 Views

We may sometime get data which contains strings but the structure of the data inside the stream is a Python list. In this article we will convert string enclosed list to an actual Python list which can be further used in data manipulation.With evalWe know the eval function will give ... Read More

Convert set into a list in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:12:20

343 Views

As part of data analysis using Python we may be required to to convert the data container from set to list. In this article we'll see e how to solve this requirement.With listThis is a straightforward approach in which we directly apply the list function on the given set. The ... Read More

Convert number to list of integers in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:10:01

11K+ Views

As part of data manipulation in Python we may sometimes need to convert a given number into a list which contains the digits from that number. In this article we'll see the approaches to achieve this.With list comprehensionIn the below approach we apply the str function to the given number ... Read More

Convert list of tuples to list of strings in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:08:40

818 Views

During data processing using python, we may come across a list whose elements are tuples. And then we may further need to convert the tuples into a list of strings.With joinThe join() returns a string in which the elements of sequence have been joined by str separator. We will supply ... Read More

Convert list of tuples to list of list in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:06:54

413 Views

Sometimes we may be given a python list whose elements are tuples. Then we may have a data processing requirement which will need these tuples to be converted to lists for further processing. In this article, we will see how to convert a list of tuples to a list of ... Read More

Convert list of tuples into list in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:04:17

838 Views

We may come across a lists whose elements are tuples. But for further data processing we may need to convert the tuples to the normal elements of a list. In this article we will see the approaches to achieve this.With list comprehensionIn this approach we design nested for loops to ... Read More

Convert list of tuples into digits in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 11:02:52

194 Views

Python has a wide variety of data manipulation capabilities. We have a scenario in which we are given a list which has elements which are pair of numbers as tuples. In this article we will see how to extract the unique digits from the elements of a list which are ... Read More

Convert list of strings to list of tuples in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 10:59:26

353 Views

While manipulating data with python, we may come across a list which has numbers as strings. Further we may want to convert the list of strings into tuples. Of course the given strings are in a particular format of numbers.With map and evalWe will use the map function to apply ... Read More

Convert list of strings and characters to list of characters in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 10:58:15

463 Views

While dalign with lists, we may come across a situation where we have to process a string and get its individual characters for further processing. In this article we will see various ways to do that.With list comprehensionWe design a for loop to go through each element of the list ... Read More

Convert list of string into sorted list of integer in Python

Pradeep Elance

Pradeep Elance

Updated on 20-May-2020 10:55:48

492 Views

Analysing data using python can bring us scenario when we have to deal with numbers represented as strings. In this article we will take a list which has numbers present as strings and we need to convert then to integers and then represent them in a sorted manner.With map and ... Read More

Advertisements