Ejemplo n.º 1
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
Ejemplo n.º 2
0
 def number_as_word(self):
     return nice_number(self.number())
Ejemplo n.º 3
0
 def number_as_word(self):
     return nice_number(self.number())
Ejemplo n.º 4
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
Ejemplo n.º 5
0
    def number_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Forces the gathering of the items if necessary.

        """
        return nice_number(self.number())
Ejemplo n.º 6
0
    def number_gathered_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Does not force the gathering of the items.

        """
        return nice_number(self.number_gathered())
Ejemplo n.º 7
0
 def number_gathered_as_word(self):
     """Returns the number of elements in the list, spelling out the number if ten 
     or below.  Does not force the gathering of the elements."""
     return nice_number(self.number_gathered())