blob: 1103f18269dc6a0abe0f072fc23da990635fe60e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
"""
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])
|