Files
TencentOS-tiny/components/language/micropython/tests/cpydiff/modules_array_subscrstep.py
2022-09-29 12:10:37 +08:00

11 lines
192 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])