In article <zkxkl.34048$sp5.7...@text.news.virginmedia.com>, Catherine Heathcote <catherine.heathc...@gmail.com> wrote: > >But I just cant find it. How do I do an or, as in c/c++'s ||? Just >trying to do something simple, the python equivilent of: > >if(i % 3 == 0 || i % 5 == 0)
if i % 3 == 0 or i % 5 == 0: You may find it worthwhile to quickly step through everything in the standard Python tutorial, it covers lots of stuff like this. -- Aahz (a...@pythoncraft.com) <*> http://www.pythoncraft.com/ Weinberg's Second Law: If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization. -- http://mail.python.org/mailman/listinfo/python-list