Driver for simple class SingleList. : Your List « 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 List 
9. 6. 1. Driver for simple class SingleList.
class SingleList:
   def __init__self, initialList = None ):
      self.__list = []  
      if initialList:
         for value in initialList:
            if value not in self.__list:
               self.__list.appendvalue )

   def __str__self ):
      tempString = ""
      i = 0
      for i in rangelenself ) ):
         tempString += "%12d" % self.__list]
      return tempString
      
   def __len__self ):
      return lenself.__list )

   def __getitem__self, index ):
      return self.__listindex ]

   def __setitem__self, index, value ):
      if value in self.__list:
         raise ValueError, "List already contains value %s" % strvalue )
      
      self.__listindex = value

   def __eq__self, other ):
      if lenself != lenother ):
         return 0  

      for i in range0, lenself ) ):

         if self.__list!= other.__list]:
            return 0

      return 1  

   def __ne__self, other ):
      return not self == other )      



def getIntegers():
   size = 5

   returnList = []  # the list to return

   for i in rangesize ):
      returnList.append(
         intraw_input"Integer %d: " i + ) ) ) )
      
   return returnList

integers1 = SingleListgetIntegers() )

integers2 = SingleListgetIntegers() )

print lenintegers1 )
print integers1

if integers1 != integers2:
   print "They are not equal"

if integers1 == integers2:
   print "They are equal"

print integers1]
integers10
print integers1

duplicates = 1223436]
print "List with duplicates is:", duplicates

single = SingleListduplicates )
print single
print lensingle )

if in single:
   print "The value 4 was found in list"
9. 6. Your List
9. 6. 1. Driver for simple class SingleList.
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.