mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
12 lines
193 B
Python
12 lines
193 B
Python
"""
|
|
categories: Modules,array
|
|
description: Subscript with step != 1 is not yet implemented
|
|
cause: Unknown
|
|
workaround: Unknown
|
|
"""
|
|
|
|
import array
|
|
|
|
a = array.array("b", (1, 2, 3))
|
|
print(a[3:2:2])
|