473,387 Members | 1,721 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

language learning vs. process

Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there!

Meanwhile, I'm finding that there is very little (that I can find) about how
to do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic, but I
don't see anything in the tutorials about it. With IDLE, it's easy enough:
just hit F5. But working on my server via Putty, trying to get a concrete,
meaningful result, it's hit and miss. For example, I find that sometimes a
program will run if I import it. I typed "import smtpmail" and it ran -- it
asked me to input From, To, Subj, Message. Other times, I type in "import
smtpmail" and it imports but doesn't run. My server is Unix. Typing
"python smtpmail.py" doesn't do it. That seems to be what a few websites
say to do to run a program. Doesn't work for me. It returns 'File
"<stdin>", line 1' and a little carrot pointing up at the 'l' in smtpmail.
I know it's on the path since I can import it. And the permissions are 755.

Another example of a very basic problem I can't find a solution to in any
tutorial: how to log in to an SMTP server (authentication). My web
searches have turned up only a few snippets of listserv conversations
between people who already know enough about the subject that I'm not able
to divine anything from the code they pass back and forth. A search on
Python.org doesn't turn up anything that would help newcomers.

So basically, what I'm saying is, there is a wealth of information about how
to concatenate strings and stuff like that, but I'm finding it very
difficult to get started with basic processes and logistical things. For
example, it took me longer than I care to admit to figure out how to append
the sys.path (that's actually in the tutorial but it's somewhat
inconspicuous.)

My ideal beginner resource would be a complete, step-by-step explanation of
how to implement a simple program -- starting with typing "python" at the
command prompt and ending with some kind of concrete result. Then, with a
complete understanding of the process of writing and implementing (emphasis
on the latter) a program, my efforts to learn the content and syntax of the
language itself will be a lot more meaningful. That is, I can learn things
like what a string is and have some confidence that I'll actually be doing
something (other than playing with a calculator) that can provide something
of value to end users in far flung places.

Might seem weird to start with learning process and implementation, since
it's all dependent to a large extent on using the language properly, but I
do think it's possible to learn implementation first (with a bare minimum of
language learning) and then go back and learn more about the language. Just
something to think about for the excellent people who teach ingrates like me
how to program.

If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.
Thanks!
Ryan


Jul 18 '05 #1
7 1753
On Mon, 1 Dec 2003 21:09:31 -0500, Ryan Walker wrote:
I'm finding that there is very little (that I can find) about how to
do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic,
but I don't see anything in the tutorials about it.


That's probably because it's very dependent on the OS and environment
you're using; running programs, forming commands, customising an
environment are better documented in the docs for the OS.

Putting that kind of stuff in detail into Python's docs (or a
PYthon-specific tutorial) would be a waste of space: you'd be
uninterested in all the information that was for environments other than
your own.

--
\ "It is seldom that liberty of any kind is lost all at once." |
`\ -- David Hume |
_o__) |
Ben Finney <http://bignose.squidly.org/>
Jul 18 '05 #2
Ryan Walker wrote:
Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there!

Meanwhile, I'm finding that there is very little (that I can find) about how
to do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic, but I
don't see anything in the tutorials about it. With IDLE, it's easy enough:
just hit F5. But working on my server via Putty, trying to get a concrete,
meaningful result, it's hit and miss. For example, I find that sometimes a
program will run if I import it. I typed "import smtpmail" and it ran -- it
asked me to input From, To, Subj, Message. Other times, I type in "import
smtpmail" and it imports but doesn't run. My server is Unix. Typing
"python smtpmail.py" doesn't do it. That seems to be what a few websites
say to do to run a program. Doesn't work for me. It returns 'File
"<stdin>", line 1' and a little carrot pointing up at the 'l' in smtpmail.
I know it's on the path since I can import it. And the permissions are 755.

Another example of a very basic problem I can't find a solution to in any
tutorial: how to log in to an SMTP server (authentication). My web
searches have turned up only a few snippets of listserv conversations
between people who already know enough about the subject that I'm not able
to divine anything from the code they pass back and forth. A search on
Python.org doesn't turn up anything that would help newcomers.

So basically, what I'm saying is, there is a wealth of information about how
to concatenate strings and stuff like that, but I'm finding it very
difficult to get started with basic processes and logistical things. For
example, it took me longer than I care to admit to figure out how to append
the sys.path (that's actually in the tutorial but it's somewhat
inconspicuous.)

My ideal beginner resource would be a complete, step-by-step explanation of
how to implement a simple program -- starting with typing "python" at the
command prompt and ending with some kind of concrete result. Then, with a
complete understanding of the process of writing and implementing (emphasis
on the latter) a program, my efforts to learn the content and syntax of the
language itself will be a lot more meaningful. That is, I can learn things
like what a string is and have some confidence that I'll actually be doing
something (other than playing with a calculator) that can provide something
of value to end users in far flung places.

Might seem weird to start with learning process and implementation, since
it's all dependent to a large extent on using the language properly, but I
do think it's possible to learn implementation first (with a bare minimum of
language learning) and then go back and learn more about the language. Just
something to think about for the excellent people who teach ingrates like me
how to program.

If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.
Thanks!
Ryan


i think there is another option you aren't thinking about. you mentioned learning with standard tutorials about basic
things like concatenating strings. you also mentioned that you would like to learn by writing one large program, step
by step. i think there is a third option you should consider, and IMO it's the best. it's studying small fully working
recipes that concentrate on one issue at a time and gives you a good foundation to build upon. fortunately, there is a
book that does just this and it's called "Python Cookbook". i think if you try to go for the one big program, you will
miss out on a lot of important stuff. I think there are also free online tutorials that do much the same thing such as
"Dive into Python". anyways, just my opinion.

bryan

Jul 18 '05 #3
Ryan Walker wrote:
Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there!

Meanwhile, I'm finding that there is very little (that I can find) about how
to do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic, but I
don't see anything in the tutorials about it. With IDLE, it's easy enough:
just hit F5. But working on my server via Putty, trying to get a concrete,
meaningful result, it's hit and miss. For example, I find that sometimes a
program will run if I import it. I typed "import smtpmail" and it ran -- it
asked me to input From, To, Subj, Message. Other times, I type in "import
smtpmail" and it imports but doesn't run. My server is Unix. Typing
"python smtpmail.py" doesn't do it. That seems to be what a few websites
say to do to run a program. Doesn't work for me. It returns 'File
"<stdin>", line 1' and a little carrot pointing up at the 'l' in smtpmail.
I know it's on the path since I can import it. And the permissions are 755.

Another example of a very basic problem I can't find a solution to in any
tutorial: how to log in to an SMTP server (authentication). My web
searches have turned up only a few snippets of listserv conversations
between people who already know enough about the subject that I'm not able
to divine anything from the code they pass back and forth. A search on
Python.org doesn't turn up anything that would help newcomers.

So basically, what I'm saying is, there is a wealth of information about how
to concatenate strings and stuff like that, but I'm finding it very
difficult to get started with basic processes and logistical things. For
example, it took me longer than I care to admit to figure out how to append
the sys.path (that's actually in the tutorial but it's somewhat
inconspicuous.)

My ideal beginner resource would be a complete, step-by-step explanation of
how to implement a simple program -- starting with typing "python" at the
command prompt and ending with some kind of concrete result. Then, with a
complete understanding of the process of writing and implementing (emphasis
on the latter) a program, my efforts to learn the content and syntax of the
language itself will be a lot more meaningful. That is, I can learn things
like what a string is and have some confidence that I'll actually be doing
something (other than playing with a calculator) that can provide something
of value to end users in far flung places.

Might seem weird to start with learning process and implementation, since
it's all dependent to a large extent on using the language properly, but I
do think it's possible to learn implementation first (with a bare minimum of
language learning) and then go back and learn more about the language. Just
something to think about for the excellent people who teach ingrates like me
how to program.

If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.
Thanks!
Ryan


i think there is another option you aren't thinking about. you mentioned learning with standard tutorials about basic
things like concatenating strings. you also mentioned that you would like to learn by writing one large program, step
by step. i think there is a third option you should consider, and IMO it's the best. it's studying small fully working
recipes that concentrate on one issue at a time and gives you a good foundation to build upon. fortunately, there is a
book that does just this and it's called "Python Cookbook". i think if you try to go for the one big program, you will
miss out on a lot of important stuff. I think there are also free online tutorials that do much the same thing such as
"Dive into Python". anyways, just my opinion.

bryan
Jul 18 '05 #4
On Mon, 1 Dec 2003 21:09:31 -0500, "Ryan Walker"
<ry**********@verizon.net> wrote:
[...]
If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.
Chapter 1 of "Learning Python" by Mark Lutz is excellent. Starting on
page 10 with "How to run Python Programs", the rest of the chaper is
all about running from the command line, setting environment
variables, startup scripts, etc. The only thing missing in the way of
"operational details" is IDLE. You should definitely work through the
tutorial on that tool.

-- Dave
Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there!

Meanwhile, I'm finding that there is very little (that I can find) about how
to do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic, but I
don't see anything in the tutorials about it. With IDLE, it's easy enough:
just hit F5. But working on my server via Putty, trying to get a concrete,
meaningful result, it's hit and miss. For example, I find that sometimes a
program will run if I import it. I typed "import smtpmail" and it ran -- it
asked me to input From, To, Subj, Message. Other times, I type in "import
smtpmail" and it imports but doesn't run. My server is Unix. Typing
"python smtpmail.py" doesn't do it. That seems to be what a few websites
say to do to run a program. Doesn't work for me. It returns 'File
"<stdin>", line 1' and a little carrot pointing up at the 'l' in smtpmail.
I know it's on the path since I can import it. And the permissions are 755.

Another example of a very basic problem I can't find a solution to in any
tutorial: how to log in to an SMTP server (authentication). My web
searches have turned up only a few snippets of listserv conversations
between people who already know enough about the subject that I'm not able
to divine anything from the code they pass back and forth. A search on
Python.org doesn't turn up anything that would help newcomers.

So basically, what I'm saying is, there is a wealth of information about how
to concatenate strings and stuff like that, but I'm finding it very
difficult to get started with basic processes and logistical things. For
example, it took me longer than I care to admit to figure out how to append
the sys.path (that's actually in the tutorial but it's somewhat
inconspicuous.)

My ideal beginner resource would be a complete, step-by-step explanation of
how to implement a simple program -- starting with typing "python" at the
command prompt and ending with some kind of concrete result. Then, with a
complete understanding of the process of writing and implementing (emphasis
on the latter) a program, my efforts to learn the content and syntax of the
language itself will be a lot more meaningful. That is, I can learn things
like what a string is and have some confidence that I'll actually be doing
something (other than playing with a calculator) that can provide something
of value to end users in far flung places.

Might seem weird to start with learning process and implementation, since
it's all dependent to a large extent on using the language properly, but I
do think it's possible to learn implementation first (with a bare minimum of
language learning) and then go back and learn more about the language. Just
something to think about for the excellent people who teach ingrates like me
how to program.

If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.
Thanks!
Ryan


Jul 18 '05 #5
On Mon, 01 Dec 2003 19:33:47 -0800, Bryan <be*****@yahoo.com> wrote:

[...]
by step. i think there is a third option you should consider, and IMO it's the best. it's studying small fully working
recipes that concentrate on one issue at a time and gives you a good foundation to build upon. fortunately, there is a
book that does just this and it's called "Python Cookbook". i think if you try to go for the one big program, you will
miss out on a lot of important stuff. I think there are also free online tutorials that do much the same thing such as
"Dive into Python". anyways, just my opinion.


Python Cookbook may be too advanced for a beginner. I would work
through Learning Python first. The main problem with Learning Python
is that it is out of date, and some of the language features, like
scoping rules, have been significantly changed. There is a new
edition due real soon. Also, you won't get too far off the path if
you follow the tutorials from python.org at the same time you work
through the book.

Dive into Python is *Excelllent*, but it also focuses on the language,
rather than the operational details, which the OP requested. Also,
the author makes it clear, this is a fast ride through some cool
features, not an introduction.

-- Dave

Jul 18 '05 #6
"Ryan Walker" <ry**********@verizon.net> writes:
Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there! Meanwhile, I'm finding that there is very little (that I can find) about how
to do basic logistical things related to using python and implementing
programs. For example: how to run a program. That's pretty basic, but I
don't see anything in the tutorials about it. With IDLE, it's easy enough:
just hit F5. But working on my server via Putty, trying to get a concrete,
meaningful result, it's hit and miss. For example, I find that sometimes a
program will run if I import it. I typed "import smtpmail" and it ran -- it
asked me to input From, To, Subj, Message. Other times, I type in "import
smtpmail" and it imports but doesn't run. My server is Unix. Typing
"python smtpmail.py" doesn't do it. That seems to be what a few websites
say to do to run a program. Doesn't work for me. It returns 'File
"<stdin>", line 1' and a little carrot pointing up at the 'l' in smtpmail.
I know it's on the path since I can import it. And the permissions are 755.
It sounds like what you are looking for really is a tutorial on the OS itself
so that you understand more about where files are etc. I've been using Unix
for a long time so I have no idea what introductory material is good (just
avoid Dummies and learn X in 24 hrs type books should cut it down).

What's happening in the instance you give is that when people say type 'python
smptmail.py', they mean to do it at the Unix command shell (sh or bash or
whatever) NOT inside the python interpreter.
Another example of a very basic problem I can't find a solution to in any
tutorial: how to log in to an SMTP server (authentication). My web
searches have turned up only a few snippets of listserv conversations
between people who already know enough about the subject that I'm not able
to divine anything from the code they pass back and forth. A search on
Python.org doesn't turn up anything that would help newcomers. So basically, what I'm saying is, there is a wealth of information about how
to concatenate strings and stuff like that, but I'm finding it very
difficult to get started with basic processes and logistical things. For
example, it took me longer than I care to admit to figure out how to append
the sys.path (that's actually in the tutorial but it's somewhat
inconspicuous.) My ideal beginner resource would be a complete, step-by-step explanation of
how to implement a simple program -- starting with typing "python" at the
command prompt and ending with some kind of concrete result. Then, with a
complete understanding of the process of writing and implementing (emphasis
on the latter) a program, my efforts to learn the content and syntax of the
language itself will be a lot more meaningful. That is, I can learn things
like what a string is and have some confidence that I'll actually be doing
something (other than playing with a calculator) that can provide something
of value to end users in far flung places. Might seem weird to start with learning process and implementation, since
it's all dependent to a large extent on using the language properly, but I
do think it's possible to learn implementation first (with a bare minimum of
language learning) and then go back and learn more about the language. Just
something to think about for the excellent people who teach ingrates like me
how to program. If anyone has any pointers on where to get more how-to information more
oriented towards process/logistics please let me know.


It occurs to me that some of the Linux and even PC magazines seem to be
running tutorials on how to use Python. They probably cover some such
issues.

Eddie


Jul 18 '05 #7
Van


Ryan Walker wrote:
Hi,
I'm getting started with python and have almost zero programming experience.
I'm finding that there are tons of tutorials on the internet -- such as the
standard tutorial at python.org -- that tell you all about the language.
That is, what are the methods, functions, modules, syntax, punctuation, etc.
No problem there!

I like 'How to Think Like a Computer Scientist' it is in the beginners
guide at python.org

Jul 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Limey Drink | last post by:
Hi I have used recently for the odd shell scrit hear and there but nothing really serious. Software I have previously written has been in VB(urgh) and C++. I have been thinking of changing my...
19
by: Roberto Dias | last post by:
Why is C++ a powerful language? Does it fit for engineering purpose? I mean, for doing matrices manipulation, numerical computing, solving equations, and, eventually, for file streaming. Should I...
8
by: Hermawih | last post by:
Hello , I want your opinion about this . In order to say it clearly , I think I have to describe it in long sentences . I could consider myself as Intermediate/Advance Access Developer ;...
9
by: John Ilves | last post by:
I've read an online C tutorial and a book but I don't really know enough to work on any real projects. What comes in between in the process of learning C? Can anyone direct me to some good websites...
11
by: Bryan | last post by:
Hi, I work for a company that is heading towards an FDA approved development process. We have always used C++ in a windows environment, and we have more than 6 years of code, applications and...
10
by: Immortalist | last post by:
Various aquisition devices that guide learning along particular pathways towards human biases. And as E.O. Wilson might say mental development appears to be genetically constrained. (1) Language...
1
by: CoreyWhite | last post by:
C++ is different from C, because C was built to execute algorithms and solve mathematical problems quickly. C++ is designed to work with special data types that hold strings of abstract...
1
by: Steven Bird | last post by:
NLTK — the Natural Language Toolkit — is a suite of open source Python modules, data sets and tutorials supporting research and development in natural language processing. It comes with 50k lines...
4
by: somenath | last post by:
Hi All, I have some questions about the process of learning C language. I see in this groups all expert most of the time quote from C standard. 1) My question is do all of you study the C...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.