MOONBOOKS
  • Notes
  • Projects
  • Courses
  • Videos
  • Datasets
  • Version
    • English
    • French
  • Sign-In
Join-Us
Notes Articles Jupyter PDF
Thumbnail 1

How to Create a List of Numbers in Python ?

by Benjamin Marchant
Edited: Dec. 7, 2024, 4:08 p.m.

Public
Thumbnail 1

How to check if words from one list is present in an element of another list in Python ?

by Benjamin Marchant
Edited: Oct. 20, 2024, 8:51 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to compare a List of Names in Python Using the Jaro-Winkler Similarity Metric ?

by Benjamin Marchant
Edited: Aug. 29, 2024, 6:36 p.m.
Tags: Python;

Public
Thumbnail 1

How to check if a list of keys exists in a Python dictionary ?

by Benjamin Marchant
Edited: Aug. 28, 2024, 1:53 p.m.
Tags: Python;

Public
Thumbnail 1

How to randomly select elements from a list in python ?

by Benjamin Marchant
Edited: Jan. 10, 2024, 6:02 p.m.
Tags: Python; List; Random; Sample;

Public
Thumbnail 1

How to use Python and SQLAlchemy to get a list of all table names in a SQLite database ?

by Benjamin Marchant
Edited: April 27, 2023, 9:46 p.m.
Tags: Python; SQLAlchemy;

Public
Thumbnail 1

How to sort a list of numbers in ascending or descending order with python ?

by Benjamin Marchant
Edited: March 23, 2023, 3:59 a.m.

Public
Thumbnail 1

How to find index of a list item in python ?

by Benjamin Marchant
Edited: March 21, 2023, 2:24 a.m.
Tags: Python; List;

Public
Thumbnail 1

How to find nearest value and its index in a list with python ?

by Benjamin Marchant
Edited: March 16, 2023, 6 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to create a video using a list of images with python ?

by Benjamin Marchant
Edited: March 8, 2023, 11:32 p.m.
Tags: Python;

Public
Thumbnail 1

How to find the number of occurrences in a list of tuples in python ?

by Benjamin Marchant
Edited: Dec. 9, 2022, 7:47 p.m.
Tags: Python; List; Tuple;

Public
Thumbnail 1

How to remove common elements between two lists in python ?

by Benjamin Marchant
Edited: Dec. 9, 2022, 3:39 p.m.

Public
Thumbnail 1

How to create a list of English alphabet letters (from A to Z) with python ?

by Benjamin Marchant
Edited: Dec. 9, 2022, 3:35 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to apply a function to a list in python ?

by Benjamin Marchant
Edited: Dec. 9, 2022, 3:32 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to shift (rotate) items in a list with python ?

by Benjamin Marchant
Edited: Dec. 9, 2022, 3:31 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to list and download all files from a url directory using python ?

by Benjamin Marchant
Edited: Nov. 21, 2022, 12:16 a.m.
Tags: Python; urlretrieve; BeautifulSoup;

Public
Thumbnail 1

How to get unique values in a list in python ?

by Benjamin Marchant
Edited: Sept. 23, 2021, 12:11 a.m.
Tags: Python; List;

Public
Thumbnail 1

How to find common elements (e.g. intersection) between two lists in python ?

by Benjamin Marchant
Edited: Sept. 21, 2021, 9:14 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to create a list of US states in python ?

by Benjamin Marchant
Edited: Sept. 21, 2021, 6:24 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to select nth element in a list with python ?

by Benjamin Marchant
Edited: Sept. 3, 2021, 6:08 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to get every nth element in a list in python ?

by Benjamin Marchant
Edited: Aug. 7, 2021, 7:17 p.m.
Tags: Python; List; Slicing;

Public
Thumbnail 1

How to slice a list in python ?

by Benjamin Marchant
Edited: Aug. 7, 2021, 6:53 p.m.
Tags: Python; List; Slice; len();

Public
Thumbnail 1

How to shuffle randomly elements of a list in python ?

by Benjamin Marchant
Edited: Aug. 6, 2021, 8:55 p.m.
Tags: Python; List; Random; Sample; shuffle;

Public
Thumbnail 1

How to split a 2D array into a list of smaller 2D arrays in python with numpy ?

by Benjamin Marchant
Edited: July 6, 2021, 6:33 p.m.
Tags: Python; Numpy;

Public
Thumbnail 1

Top Data Structures Asked in Coding Interviews

by codebuster
Edited: June 10, 2021, 12:09 p.m.
Tags: data structure; arrays; linked lists; stacks and queues; hashtables; graphs; trees; heaps and maps;

Public
Thumbnail 1

Big O Exercise: How to create an efficient algorithm to sort a list in python ?

by Benjamin Marchant
Edited: May 28, 2021, 6:54 p.m.
Tags: Big 0; Python; List;

Public
Thumbnail 1

How to swap two or more elements in a list in python ?

by Benjamin Marchant
Edited: May 19, 2021, 9:27 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to create a sub list inside a list (a nested list) in HTML ?

by Benjamin Marchant
Edited: April 8, 2021, 12:02 a.m.
Tags: HTML; CSS; List;

Public
Thumbnail 1

How to check if all elements of a list are also in another list in python ?

by Benjamin Marchant
Edited: March 29, 2021, 3:52 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to check if a word is in a list composed of words and sentences in python ?

by Benjamin Marchant
Edited: March 29, 2021, 3:40 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to check if a list is empty in python ?

by Benjamin Marchant
Edited: March 29, 2021, 1:17 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to create a dataframe from a list (or multiple lists) with pandas ?

by Benjamin Marchant
Edited: March 24, 2021, 2:10 p.m.
Tags: Python; Pandas; DataFrame;

Public
Thumbnail 1

How to check if any element of a list is in a string variable in python ?

by Benjamin Marchant
Edited: March 8, 2021, 2:58 p.m.
Tags: Python;

Public
Thumbnail 1

How to create a new list by adding elements from multiple lists of same length in python ?

by Benjamin Marchant
Edited: Dec. 17, 2020, 6:43 p.m.
Tags: Python; List;

Public
Thumbnail 1

How to get a list of python modules (with version for each module) and create a requirements.txt file ?

by Benjamin Marchant
Edited: Sept. 26, 2020, 5:10 p.m.
Tags: Python;

Public
Thumbnail 1

How to find all combinations from a list of elements in python ?

by Benjamin Marchant
Edited: July 29, 2020, 2:42 a.m.
Tags: Python;

Public
Thumbnail 1

How to convert a matrix to a list in python ?

by Benjamin Marchant
Edited: July 27, 2020, 9:22 p.m.
Tags: Python; Numpy;

Public
Thumbnail 1

How to convert a list to a matrix using numpy in python ?

by Benjamin Marchant
Edited: July 27, 2020, 6:47 p.m.
Tags: Python; Numpy;

Public
Thumbnail 1

How to calculate the average (arithmetic mean) from a list of numbers in python ?

by Benjamin Marchant
Edited: July 25, 2020, 2:15 a.m.
Tags: Python;

Public
Thumbnail 1

How to remove (filter) the duplicates in a python list ?

by Benjamin Marchant
Edited: June 1, 2020, 2:04 p.m.
Tags: Python; List;

Public
  • 1
  • 2
Copyright © 2025 - All rights reserved Contact Us Terms & Conditions