Hello all, I've got a small problem. I am a newbie and I can't figure out what is wrong with the script below.
I'm trying to count up the "likes" and divid them by the "likes"+"dislikes", but all I get when I divided them is 0.0000000000000 Anyone have any ideas?? code is below. Thanks, poz likeresults = int( Vote.objects.filter(like=True).count() ) totalresults = int( Vote.objects.filter(like=True).count() + Vote.objects.filter(like=False).count() ) precentage = int( likeresults / totalresults ) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---