this post was submitted on 04 Oct 2023
0 points (NaN% liked)

Python

6981 readers
21 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
top 1 comments
sorted by: hot top controversial new old
[โ€“] [email protected] -1 points 2 years ago

When you need a doubly-linked list in Python, you can use the deque data structure, which is in the collections module

When do I need a doubly-linked list in Python? Whenever I have something where I can often expect to interact with the first and last element of it? Always, because it's more efficient than shifting the entire list around? Something else entirely?