how to append to every second item in list python
a=[2,4,6]
for b in range (0,len(a)):
a.insert(b*2,1)
how to append to every second item in list python
a=[2,4,6]
for b in range (0,len(a)):
a.insert(b*2,1)
append to front of list python
var = 7
array = [1,2,3,4,5,6]
array.insert(0,var)
print(array)
# [7, 1, 2, 3, 4, 5, 6]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us