Class: __getitem__ demo : Class getitem : Class : Python examples (example source code) Organized by topic

C++
PHP
Python


Python  »  Class   » [  Class getitem  ]  Screenshots 
 



Class: __getitem__ demo




class indexer:
     def __getitem__(self, index):
         return index ** 2

X = indexer()
print X[2]                        # X[icalls __getitem__(X, i)

for i in range(5)
     print X[i],             

           
       
Related examples in the same category
1.  How to call __getitem__ How to call __getitem__
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.