Dapatkan Rangkaian Item Python Daftar

names = ['Alice', 'Bob', 'Tom', 'Grace']

names[1:3]
# Output:
# ['Bob', 'Tom']
Calleniah