summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string-slice.py
blob: 7538ae5700f95ddc4eaf9218e3ddd7e792fa215d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
print("123"[0:1])

print("123"[0:2])

print("123"[:1])

print("123"[1:])

# Idiom for copying sequence
print("123"[:])

print("123"[:-1])

# Weird cases
print("123"[0:0])
print("123"[1:0])
print("123"[1:1])
print("123"[-1:-1])
print("123"[-3:])
print("123"[-3:3])
print("123"[0:])
print("123"[:0])
print("123"[:-3])
print("123"[:-4])
# Range check testing, don't segfault, please ;-)
print("123"[:1000000])
print("123"[1000000:])
print("123"[:-1000000])
print("123"[-1000000:])
# No IndexError!
print(""[1:1])
print(""[-1:-1])