473,566 Members | 3,245 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New Programmer and Python

I'm new to programming and have been recommended to start with Python. I've
reviewed the tutorial and am looking for additional learning tools to learn
programming and Python. Any recommendations ?
Jul 18 '05 #1
10 1413
PMD96 wrote:
I'm new to programming and have been recommended to start with Python.*
I've reviewed the tutorial and am looking for additional learning tools to
learn programming and Python.**Any*re commendations?


Here's a good read:
http://www.ibiblio.org/obp/thinkCSpy/

Another recommendation is to fire up the interactive interpreter, and start
experimenting.

Have fun,
Jeffrey
Jul 18 '05 #2
Think of a program you want to write, and just do the psuedo first. What
objects do you need?, do you need to read from a file, and where does the
output go.. no fancy gui yet.

Write the flowchart or psuedocode of what happens before what, before even
looking into how to do it in Python. And then check out Quick Python book,
or one of the other tutorials when it's time to write the classes.

At an absolute minimum, write a module with a main, and then just start
setting variables and then printing them out.

"PMD96" <PM***@comcast. net> wrote in message
news:_N******** ************@co mcast.com...
I'm new to programming and have been recommended to start with Python. I've reviewed the tutorial and am looking for additional learning tools to learn programming and Python. Any recommendations ?

Jul 18 '05 #3
PMD96 said unto the world upon 2004-09-18 11:32:
I'm new to programming and have been recommended to start with
Python. I've reviewed the tutorial and am looking for additional
learning tools to learn programming and Python. Any recommendations ?


As a relative Python and programming newbie myself, I'd say you should
check out various links at:

<http://www.python.org/topics/learn/>
<http://www.python.org/doc/Intros.html>
<http://www.python.org/topics/learn/non-prog.html>
The gentle introduction that I started with is:

How to Think Like a Computer Scientist
Allen Downey's open source textbook has a Python version, written with
Jeff Elkner. It's also available in book form.
<http://www.ibiblio.org/obp/thinkCSpy/>

It is aimed at high-school students and is quite clear, but
appropriately low in its pitch.

After that, I found Lutz and Ascher's Learning Python quite helpful.
<http://www.oreilly.com/catalog/lpython2/>

HTH,

Brian vdB

Jul 18 '05 #4
In article <_N************ ********@comcas t.com>,
"PMD96" <PM***@comcast. net> wrote:
I'm new to programming and have been recommended to start with Python.
Python is an excellent place to start programming. In one sense, it
fills much the same niche BASIC did a generation ago; it's very easy for
beginners to learn. Python is also available on a wide variety of
platforms (Unix, Windows, and Mac) and is easy to install. It is also
very portable. There are certainly changes that have happened over the
years to the language, but at least there's only a single line of
development, so you don't have to worry about different branches heading
off in different (incompatible) directions.

Python has a shallow learning curve, which means you can learn just a
little bit of the language and start building useful programs right
away. As you explore more features of the language and libraries, you
can do more sophisticated stuff, but you need to know just a small
self-contained subset to get going.

But, unlike BASIC, Python is a powerful modern language, which is taken
seriously by professional programmers who want to get real work done.
It supports (but does not require) object oriented programming. It's
got good flow control constructs, a rich (but easy to use) assortment of
built-in data structures, exceptions, and hands-off memory management.

It's also fast enough for a lot of what most people do. Not as fast as
C or C++, but comparable with the likes of Perl, Java, and TCL.

It has some controversial aspects, to be sure. The one that will be in
your face right from the start is the use of indentation for statement
grouping. All I can that can be said about that is "deal with it".
Some people think it's absolutely brilliant, others think it's the
stupidest thing they've ever heard of. But, it is what it is, it's not
going to change, nobody in either camp is ever going to be convinced to
change their mind, and there is nothing that can be said about it on
either side which hasn't already been said 100 times already.

The other thing is the use of dynamic data typing. People who come from
a C++ or Java backgrounds often find it upsetting that there is no data
type checking (nor is there any real notion of private data or methods,
in the sense that those languages support). On the other hand,
Pythonistas find this freedom from "type bondage" one of the best things
about the language.

Overall, my recommendation to anybody just getting into programming
today would be to learn both Python and Java. They are both modern,
popular, useful languages, but based on very different design
philosophies. Once you've learned both, you'll be in a much better
position to make up your own mind which you like better.
I've reviewed the tutorial and am looking for additional learning
tools to learn programming and Python. Any recommendations ?


http://diveintopython.org/
Jul 18 '05 #5
Hi PMD96,

I had to learn Perl once. A co-worker suggested that I take a look at
http://www.perlmonks.org I did and wow! I became a Perl guru. I
changed jobs and at this new job they use Python. I think Python is
great but there is no pythonmonks ... well until now ... I am starting
a sight called Snakehandlers.n et,
right now I run it off my desktop at home so check it out at
http://216.175.112.88.

Thanks for you support!
Plankton

"PMD96" <PM***@comcast. net> wrote in message news:<_N******* *************@c omcast.com>...
I'm new to programming and have been recommended to start with Python. I've
reviewed the tutorial and am looking for additional learning tools to learn
programming and Python. Any recommendations ?

Jul 18 '05 #6
On Sat, 18 Sep 2004 12:36:22 -0400, Roy Smith <ro*@panix.co m> wrote:
Some people think it's absolutely brilliant, others think it's the
stupidest thing they've ever heard of. But, it is what it is, it's not
going to change, nobody in either camp is ever going to be convinced to
change their mind, and there is nothing that can be said about it on
either side which hasn't already been said 100 times already.


I don't agree that nobody in either camp is ever going to be convinced
to change their mind. I for example was in the "that's the stupidiest
thing I've heard of (since COBOL)" and now changed my mind.
Not sure if this really counts... as indeed my initial position was
just *before* actually trying to write any non-trivial python program.

Andrea

PS: I'm sure this is one of the things said 100 times
already... but I remember students of programming courses
at university that were used to write their programs in
Pascal with no indentation and, once the program were
working and before submitting them, adding proper
indentation "because otherwise the professor gets mad".
I'm not kidding about this.
Jul 18 '05 #7
Python is an excellent choice not only as a first language, but as
"the" language.
Python is based on the same principles than the other languages, but
they are implemented in a more easy and clear way. Its easy syntax
lets you learn the programming principles faster and better, letting
you concentrate in the problem you're trying to solve instead in lower
level, redundant tasks such as memory allocation or types
declarations.
Besides, it is also fun.
Jul 18 '05 #8
Am Sonntag, 19. September 2004 08:29 schrieb Andrea Griffini:
I don't agree that nobody in either camp is ever going to be convinced
to change their mind.


I don't agree either. I started programming in C, switched to Perl some time
ago, and then tried Python just for fun. As the story's been told a hundred
times, I was at first appaled at the lack of block delimiters, but currently
I wouldn't want to live with them again... It's just a matter of trying it
out and becoming accustomed to it.

Heiko.
Jul 18 '05 #9
lu****@gmx.net (Neuruss) wrote:
Python is an excellent choice not only as a first language, but as
"the" language.


I think it's silly (and, from a career advancement point of view, rather
dangerous) to think of any language as the only language you'll ever
need. Every new language I've ever learned has taught me something new
about programming, because it's shown me a different way of doing
things. Sometimes I like what I learn, sometimes I don't, but all
knowledge is useful.

From a purely "can I find a job" point of view, knowing only one
language is professional suicide. Choice of language may be one of the
least important decisions one makes when starting a large project, but
the fact remains that when looking for employees, the number one
question recruiters always ask is, "Do you know language X?". If you
say, "no", you won't even get past the initial phone screen.

So, absolutely learn Python as a first language. But, don't stop there.
Jul 18 '05 #10

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

Similar topics

6
1812
by: Michael L. Labbe | last post by:
Hello. I'm an experienced programmer who is evaluating learning Python if it is applicable to a few projects. The programs I am going to list are production software - they are not throwaway toy projects, but will actually have real world application. I've spent years writing C++ and Perl code, but I would like to try "this Python language"...
7
2058
by: stormslayer | last post by:
Folks: I've been considering a shift to python. I currently use c++builder (borland) or perl. I do computational models / statistics programming, and was interested in python b/c it a. has a library that connects to the R stats package b. has code that seems way more readable than anything else There is, however, at least for my...
15
10516
by: Randall Smith | last post by:
I've been programming in Python for about 2 years. I think it offers the best combination of simplicity and power of any language I have explored. As I write more and larger and complex programs, I need to code better. By better I mean clearer, cleaner, more efficient and maintainable. As the subject states, I want to become a really good...
12
1968
by: a | last post by:
Hi there, I am looking for a Python/PHP programmer with over 6 years of experience to develop applications in a UNIX (open source) environment. The products are DB backed web applications and the skills should include in-depth knowledge of HTML (actual coding and not wysiwug) and cascade style sheets. The application is...
8
1517
by: Ray | last post by:
Hello there, I've been programming in Java for about 8 years now, but lately I've been hearing a lot about Python and I'm really interested in learning more about it. I've read the tutorial, and some books (core python programming is one), but there's one thing that's still missing: how to use Python the "Python" way. I found learning C#...
2
1794
by: Dan Stromberg | last post by:
I've been a sysadmin for about 13 years, but I'm realizing that my favorite part of being a sysadmin are those moments where there's a reason to write some code - preferably in python. What might one do to make the transition from sysadmin to python programmer, aside from the basics like coming up with a python heavy resume and putting some...
13
2022
by: aum | last post by:
Hi, I'm a Python programmer, just starting to get into javascript. On reading some of the js guides, and not liking any of the OO usage patterns I saw, I've cooked up something which python folks might find to taste. Here's the code - first the 'engine', then some code demonstrating the usage patterns. For me (and maybe for some of...
65
5226
by: Chris Carlen | last post by:
Hi: From what I've read of OOP, I don't get it. I have also found some articles profoundly critical of OOP. I tend to relate to these articles. However, those articles were no more objective than the descriptions of OOP I've read in making a case. Ie., what objective data/studies/research indicates that a particular problem can be...
2
1134
by: robnhood00 | last post by:
I need a python programmer that can integrate graphics into an existing python application. The application is a basic application and the job should be pretty easy for an experienced Python programmer. Los Angeles programmer is preferred but this can obviously be done from anywhere. Please contact me at robnhood007@yahoo.com is you can...
0
1034
by: Michael J. Yanowitz | last post by:
Hello: I think I can do it but would like more details. I have been doing GUI work for years. I have been doin Python only for the last 2 and 1/2 years. The GUI work I have done there has been with TkInter and wxPython. Thanks: Michael Yanowitz
0
7893
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8109
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7645
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7953
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6263
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5485
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
1
2085
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1202
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
926
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.