Definition of class SimpleDictionary. : Your Dictionary « Collections « Python Tutorial

Python Tutorial
1. Introduction
2. Data Type
3. Statement
4. Operator
5. String
6. Tuple
7. List
8. Dictionary
9. Collections
10. Function
11. Class
12. File
13. Buildin Function
14. Buildin Module
15. Database
16. Regular Expressions
17. Thread
18. Tkinker
19. wxPython
20. XML
21. Network
22. CGI Web
23. Windows
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorial
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Python Tutorial » Collections » Your Dictionary 
9. 5. 1. Definition of class SimpleDictionary.
class SimpleDictionary:
   def __getitem__self, key ):
      return self.__dict__key ]

   def __setitem__self, key, value ):
      self.__dict__key = value

   def __delitem__self, key ):
      del self.__dict__key ]      

   def __str__self ):
      return strself.__dict__ )

   def keysself ):
      return self.__dict__.keys()

   def valuesself ):
      return self.__dict__.values()

   def itemsself ):
      return self.__dict__.items()
   

simple = SimpleDictionary()
print "The empty dictionary:", simple

simple"one"
simple"two"
simple"three"
print "The dictionary after adding values:", simple

del simple
print "The dictionary after removing a value:", simple

print "Dictionary keys:", simple.keys()
print "Dictionary values:", simple.values()
print "Dictionary items:", simple.items()
9. 5. Your Dictionary
9. 5. 1. Definition of class SimpleDictionary.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.