Programming Articles - Page 1935 of 3366

Concatenate two lists element-wise in Python

Pradeep Elance
Updated on 20-May-2020 10:28:39

1K+ Views

Pyhton has great data manipulation features. In this article we will see how to combine the elements from two lists in the same order as they are present in the lists.With zipThe zip function can take in the two lists as parameters and concatenate them. We design a for loop to capture these combinations and put them into a new list.Example Live DemolistA = ["Outer-", "Frost-", "Sun-"] listB = ['Space', 'bite', 'rise'] # Given lists print("Given list A: ", listA) print("Given list B: ", listB) # Use zip res = [i + j for i, j in zip(listA, listB)] # Result ... Read More

Combining values from dictionary of list in Python

Pradeep Elance
Updated on 20-May-2020 10:26:12

578 Views

Let’s say we have a python dictionary which has lists as it values in the key value pairs. We need to create a list which will represent all possible combinations of the keys and values from the given lists.With sorted and productThe product function from itertools can be used to create a crtesian product of the iterable supplied to it as parameter. We sort the dictionary and use two for loops to create the combination of all possible key value pairs from the lists in the dictionary.Example Live Demoimport itertools as it Adict = {    "Day": ["Tue", "Wed"],    "Time": ... Read More

Combining two sorted lists in Python

Pradeep Elance
Updated on 20-May-2020 10:21:37

354 Views

Lists are one of the most extensively used python data structures. In this article we will see how to combine the elements of two lists and produce the final output in a sorted manner.With + and sortedThe + operator can join the elements of two lists into one. Then we apply the sorted function which will sort the elements of the final list created with this combination.Example Live DemolistA = ['Mon', 'Tue', 'Fri'] listB = ['Thu', 'Fri', 'Sat'] # Given lists print("Given list A is : ", listA) print("Given list B is : ", listB) # Add and sort res = ... Read More

Combining tuples in list of tuples in Python

Pradeep Elance
Updated on 20-May-2020 10:20:36

606 Views

For data analysis, we sometimes take a combination of data structures available in python. A list can contain tuples as its elements. In this article we will see how we can combine each element of a tuple with another given element and produce a list tuple combination.With for loopIn the below approach we create for loops that will create a pair of elements by taking each element of the tuple and looping through the element in the list.Example Live DemoAlist = [([2, 8, 9], 'Mon'), ([7, 5, 6], 'Wed')] # Given list of tuple print("List of tuples : ", Alist) # ... Read More

Checking triangular inequality on list of lists in Python

Pradeep Elance
Updated on 20-May-2020 10:15:50

346 Views

The sum of two sides of a triangle is always greater than the third side. This is called triangle inequality. Python list of lists we will identify those sublists where the triangle inequality holds good.With for and >We will first get all the sublists sorted. Then for each sublist we will check if the if the sum of first two elements is greater than the third element.Example Live DemoAlist = [[3, 8, 3], [9, 8, 6]] # Sorting sublist of list of list for x in Alist:    x.sort() # Check for triangular inequality for e in Alist:    if e[0] ... Read More

Checking if starting digits are similar in list in Python

Pradeep Elance
Updated on 20-May-2020 10:09:50

366 Views

Sometimes in a given Python list we may be interested only in the first digit of each element in the list. In this article we will check if the first digit of all the elements in a list are same or not.With set and mapSet in Python does not allow any duplicate values in it. So we take the first digit of every element and put it in a set. If all the digits are same then the length of the set will be only 1 has no duplicates allowed.Example Live DemoAlist = [63, 652, 611, 60] # Given list print("Given ... Read More

Check whether a string is valid JSON or not in Python

Pradeep Elance
Updated on 20-May-2020 10:04:16

2K+ Views

JSON is a type of text format use to exchange data easily between various computer programs. It has a specific format which Python can validate. In this article we will consider a string and using JSON module we will validate if the string represents a valid JSON format or not.Creating JSON ObjectThe json module has method called loads. It loads a valid json string to create a Json object. In this example we load the string and check that there is no error in loading the JSON object. If there is error we consider the JSON string as invalid.Example Live Demoimport ... Read More

How to remove the tick labels in JavaFX XY charts?

Maruthi Krishna
Updated on 20-May-2020 08:39:22

677 Views

The javafx.scene.XYChart class is the base class of all the charts that are plotted in an x-y pane. By instantiating the subclasses of this class you can create various XY charts namely − line chart, area chart, bar chart, pie chart, bubble chart, scatter chart, etc.In the XY chart, the given data points are plotted on an XY plane. Along the x and y axes, you will have the tick marks and labels. The labels specify the names (or numbers) of the values.Changing the color of the tick marksThe javafx.scene.chart.Axis class (abstract) is the base class of all the axes ... Read More

How to remove the tick marks in JavaFX XY charts?

Maruthi Krishna
Updated on 20-May-2020 08:34:14

321 Views

The javafx.scene.XYChart class is the base class of all the charts that are plotted in an x-y pane. By instantiating the subclasses of this class you can create various XY charts namely − line chart, area chart, bar chart, pie chart, bubble chart, scatter chart, etc.In the XY chart, the given data points are plotted on an XY plane. Along the x and y axes, you will have the tick marks and tick labels. The tick marks represent various values with uniform intervals.Removing the tick marksThe javafx.scene.chart.Axis class (abstract) is the base class of all the axes in XY charts. ... Read More

How to modify the length of the tick marks in JavaFX XY charts?

Maruthi Krishna
Updated on 20-May-2020 08:28:17

505 Views

The javafx.scene.XYChart class is the base class of all the charts that are plotted in an x-y pane. By instantiating the subclasses of this class you can create various XY charts namely − line chart, area chart, bar chart, pie chart, bubble chart, scatter chart, etc.In the XY chart, the given data points are plotted on an XY plane. Along the x and y axes, you will have the tick marks and tick labels. The tick marks represent various values with uniform intervals.Changing the length of the tick marksThe javafx.scene.chart.Axis class (abstract) is the base class of all the axes ... Read More

Advertisements