[Tutor] pyhton (fwd)

Danny Yoo dyoo@hkn.eecs.berkeley.edu
Thu, 27 Dec 2001 12:13:53 -0800 (PST)


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!