mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 10:20:52 +02:00
13 lines
178 B
Python
13 lines
178 B
Python
"""
|
|
categories: Modules,array
|
|
description: Array deletion not implemented
|
|
cause: Unknown
|
|
workaround: Unknown
|
|
"""
|
|
|
|
import array
|
|
|
|
a = array.array("b", (1, 2, 3))
|
|
del a[1]
|
|
print(a)
|