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