Answers for "how to clear elements in array python"

2

how to clear an array python

array = [1, 2, 3, 4, 5, 6, 7, 8, 9]
print(array)
# Output [1, 2, 3, 4, 5, 6, 7, 8, 9]

array.clear()
print(array)
# Output []
Posted by: Guest on May-03-2021

Code answers related to "how to clear elements in array python"

Python Answers by Framework

Browse Popular Code Answers by Language