On Friday 29 January 2010 05:40:19 Chris McComas wrote:
> I have this view with my form: http://dpaste.com/152046/ when I try to
> submit the form I'm getting this error: unsupported operand type(s)
> for //: 'unicode' and 'int' what did I do wrong?
> 

A full traceback would be helpful, along with your form code.

I suspect that your form isreturning unicode strings (which it gets from the 
POST of your form). If that's the case, you might want to try int(), float(), 
long(), (which ever floats your boat [pun intended]) and convert them from 
unicode strings to int's. -- if your strings aren't integers and you try to 
convert it, it will throw a ValueError at you

In [6]: x = u'123'

In [7]: int(x)/4
Out[7]: 30      

In [8]: x/4
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)

/home/gufymike/Projects/goproject/ego_examples/src/<ipython console> in 
<module>()

TypeError: unsupported operand type(s) for /: 'unicode' and 'int'

In [9]: int(u"1x")
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)

/home/gufymike/Projects/goproject/ego_examples/src/<ipython console> in 
<module>()

ValueError: invalid literal for int() with base 10: '1x'

  

Mike




-- 
We are MicroSoft.  You will be assimilated.  Resistance is futile.
        -- Attributed to B.G., Gill Bates

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to