Logo

Programming-Idioms

History of Idiom 44 > diff from v41 to v42

Edit summary for version 42 by programming-idioms.org:
[Python] +DemoURL

Version 41

2021-05-25, 11:47:29

Version 42

2021-09-27, 13:21:40

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Inserting the element x at a given position in the list s

Idiom #44 Insert element in list

Insert element x at position i in list s. Further elements must be shifted to the right.

Inserting the element x at a given position in the list s
Variables
x,i,s
Variables
x,i,s
Code
s.insert(i, x)
Code
s.insert(i, x)
Demo URL
https://replit.com/@ProgIdioms/HotSarcasticType