> Riko Wichmann wrote:
> 
> > Dear all,
> >
> > is there a way in Python to comment out blocks of code 
> without putting 
> > a # in front of each line? Somethings like C's
> >
> > /*
> >     block of code here is commented out
> > */

Well, you could fake it by doing

    """
    block of code here is commented out
    """

which will work most of the time...

Cheerio, Marc.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to