Answers for "how to add value in front of array pythojn"

2

how to add value in front of array pythojn

x = [3, 56, 34, 67]
x.insert(0, 45)
print(x)  #[43, 3, 56, 34, 67]
Posted by: Guest on March-31-2021

Code answers related to "how to add value in front of array pythojn"

Python Answers by Framework

Browse Popular Code Answers by Language