[Tutor] what is wrong with this syntax?

Vern Ceder vceder at canterburyschool.org
Tue May 18 15:43:32 CEST 2010


Dipo Elegbede wrote:
> ples help me figure out what is wrong with this syntax?
> 
> 
> print('Here are the numbers from 0 to 9')
> for i in the range(10):
>     print(i)

Remove the word "the"

print('Here are the numbers from 0 to 9')
for i in range(10):
      print(i)


Cheers,
Vern

> 
> thank you.
> 
> i am currently reading a byte of a python.
> 
> thanks.
> 
> -- 
> Elegbede Muhammed Oladipupo
> OCA
> +2348077682428
> +2347042171716
> www.dudupay.com <http://www.dudupay.com>
> Mobile Banking Solutions | Transaction Processing | Enterprise 
> Application Development
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> To unsubscribe or change subscription options:
> http://mail.python.org/mailman/listinfo/tutor

-- 
This time for sure!
    -Bullwinkle J. Moose
-----------------------------
Vern Ceder, Director of Technology
Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804
vceder at canterburyschool.org; 260-436-0746; FAX: 260-436-5137

The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW


More information about the Tutor mailing list