Change language

Python | Print all sublists of the list

Examples:

 Input: list = [1, 2, 3] Output: [[], [1], [1, 2], [1, 2, 3], [2] , [2, 3], [3]] Input: [1, 2, 3, 4] Output: [[], [1], [1, 2], [1, 2, 3], [1, 2 , 3, 4], [2], [2, 3], [2, 3, 4], [3], [3, 4], [4]] 

Fit:
The approach will be executed in two nested loops up to the length of the given list. The outer loop selects the starting element, and the inner loop treats all elements to the right of the selected elements as the ending element of the subarray. To get a subarray, we can use slicing to get a subarray.

Step 1: Run a loop till length of the given list.
Step 2: Run a loop from i + 1 to length of the list to get all the subarrays from i to its right.
Step 3: Slice the subarray from i to j.
Step 4: Append it to a another list to store it
Step 5: Print it at the end

Below is the Python implementation of the above approach:

# Python program for printing all
# sublist from the given list

 
# function to generate all sublists

def sub_lists (list1) :

 

 < / code> # keep all sublists

sublist = [[]]

  

# first loop

for i in range ( len (list1) + 1 ):

 

# second loop

for j in range (i + 1 , len (list1) + 1 ):

 

# slice subarray

sub = list1 [i: j]

sublist.append (sub)

 

 

return sublist

  
# driver code

l1 = [ 1 , 2 , 3 , 4 ]

print (sub_lists (l1))

Exit:

 [[], [1], [1, 2], [1, 2, 3], [2 ], [2, 3], [3]] 

Shop

Gifts for programmers

Best Python online courses for 2022

$FREE
Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best computer for crypto mining

$499+
Gifts for programmers

Best laptop for Sims 4

$
Gifts for programmers

Best laptop for Zoom

$499
Gifts for programmers

Best laptop for Minecraft

$590

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers

News


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically