Dongsheng Ruan wrote: > I remember that in python there is some kind of dummy statement that just > holds space and does nothing. > > I want it to hold the place after a something like if a>b: do nothing > > I can't just leave the space blank after if statement because there will be > error message. > > Does anybody know what to insert there? > > Thanks! > >
if a > b: pass -- http://mail.python.org/mailman/listinfo/python-list