# File Tuple09.py
# Rev 7/31/00
# Copyright 2000, R. G. Baldwin
# Illustrates accessing a tuple 
#  item with an index
#-------------------------------
t1 = "a",1,"c"
print t1[1]

Figure 9