Doubt

Tobiah toby at tobiah.org
Thu Jul 24 14:46:49 EDT 2008


>> 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 **



More information about the Python-list mailing list