# File Tuple10.py
# Rev 7/31/00
# Copyright 2000, R. G. Baldwin
# Illustrates accessing a slice 
#  of items from a tuple
#-------------------------------
t1 = "a","b","c", "d", "e"
print t1[1:4]

Figure 10