[Tutor] pyhton (fwd)

Danny Yoo dyoo@hkn.eecs.berkeley.edu
Thu, 27 Dec 2001 17:34:06 -0800 (PST)


Hi Ted,

It's usually a better idea to send your replies to 'tutor@python.org'
instead of me directly.  I don't want to be the weakest link here...
*grin*

Seriously though, it helps to send messages to the Tutor group because it
allows any one of the volunteers here to reply when others are busy.  
I'll forward your message to the others on Tutor.


----- Original Message -----
From: "Danny Yoo" <dyoo@hkn.eecs.berkeley.edu>
To: <tutor@python.org>
Cc: <civic525@hotmail.com>
Sent: Thursday, December 27, 2001 2:13 PM
Subject: Re: [Tutor] pyhton (fwd)


> On Wed, 26 Dec 2001, Danny Yoo wrote:
>
> > hello do ou know were i can find a chart or page telling what the
> > different commands on pyhton do?
>
> Hello!  There's a 'Library Reference' that gives a list of the commands
> you can use in Python:
>
>     http://www.python.org/doc/lib/
>
> However, it is very densely packed information, and if you're starting to
> learn Python, I'd recommend not going through it like Cliff Notes.
>
>
> You might find the tutorials at:
>
>     http://python.org/doc/Newbies.html
>
> more useful --- they may have the kind of summary that you're looking for.
>
>
>
> > or better yet do you know wich command "enters" or goes to the next
> > line on python?
>
> I'm not sure I understand what you mean.  When we run Python programs, we
> go from top-down, executing each statement in turn.  For example:
>
> ###
> print 1
> print 2
> print 3
> ###
>
> should print out:
>
> ###
> 1
> 2
> 3
> ###
>
> without having to tell it to run the next line.
>
> Please feel free to ask more questions on Tutor.  Good luck to you!
>

i tried that but i just sead
###
>>>1
>>>print 2
>>>2
>>>print 3
>>>3

          if you know whats wrong please help me