>> 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):
do_something()
** Posted from http://www.teranews.com **
--
http://mail.python.org/mailman/listinfo/python-list
