Answers for "python array clear"

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
6

how to clear a list in python

yourlist = [1,2,3,4,5,6,7,8]
del yourlist[:]
Posted by: Guest on April-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language