Answers for "how to clear an array list"

1

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
-1

how to reset an arraylist in java

There are two ways to empty an ArrayList:
1. By using ArrayList.clear() method or with the help of ArrayList.
2. removeAll() method.
Posted by: Guest on December-04-2020

Code answers related to "how to clear an array list"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language