Doubt

Guilherme Polo ggpolo at gmail.com
Wed Jul 23 11:07:33 EDT 2008


On Wed, Jul 23, 2008 at 11:51 AM, ജഗന്നാഥ് <jaganadhg at gmail.com> wrote:
> Friends
>
> I am a Perl programmer new to Python. I have a small doubt.
> How to convert the perl notation
> $a = ""; expression in Python ?

a = ""

>
> How to represent the loop
> for ($a = $b; $a<=$c;$a++){
> } in Python
>

for a in range(b, c + 1): pass

> Jagan
> Linguist
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
-- Guilherme H. Polo Goncalves


More information about the Python-list mailing list