
-----------------------------------
php111
Wed Feb 09, 2011 8:25 pm

What are good books on Python?
-----------------------------------
What are some really good books for non programming to learn Python first?

-----------------------------------
Tony
Wed Feb 09, 2011 8:32 pm

RE:What are good books on Python?
-----------------------------------
http://learnpythonthehardway.org/

-----------------------------------
php111
Wed Feb 09, 2011 8:43 pm

Re: RE:What are good books on Python?
-----------------------------------
http://learnpythonthehardway.org/

1 what complier do I need?

2 how many python books do I need to read before C?

-----------------------------------
Tony
Wed Feb 09, 2011 8:54 pm

RE:What are good books on Python?
-----------------------------------
1. Compiler for what?
2. What does Python have to do with C?

-----------------------------------
php111
Wed Feb 09, 2011 9:19 pm

Re: RE:What are good books on Python?
-----------------------------------
1. Compiler for what?
2. What does Python have to do with C?

a complier to compile Python code. I am new  to programming. what steps do I need to take before C?

-----------------------------------
Tony
Wed Feb 09, 2011 9:48 pm

RE:What are good books on Python?
-----------------------------------
1) You're looking for an interpreter instead. Have you tried http://www.python.org/ ?
2) Why C?

-----------------------------------
php111
Wed Feb 09, 2011 9:51 pm

Re: RE:What are good books on Python?
-----------------------------------
1) You're looking for an interpreter instead. Have you tried http://www.python.org/ ?
2) Why C?

I want to build my own OS. I want to learn C, C++, OOP, and ASM.

-----------------------------------
turboliux
Thu Feb 10, 2011 2:44 am

Re: RE:What are good books on Python?
-----------------------------------
1) You're looking for an interpreter instead. Have you tried http://www.python.org/ ?
2) Why C?

I want to build my own OS. I want to learn C, C++, OOP, and ASM.

Your own OS, hah? I had to write my own Virtual Machine for class assignment, didn't really enjoy it.

If you really want to write OS, you better start learning ASM first. You will get the idea of registers, stacks, interupts and all that jazz...

When you learn ASM, which might take you few months, then try learning C or C++ with OOP in mind.

Good luck!

-----------------------------------
turboliux
Thu Feb 10, 2011 3:14 am

Re: RE:What are good books on Python?
-----------------------------------
http://learnpythonthehardway.org/

pretty cool book, thanks for ref.

-----------------------------------
SmokeMonster
Thu Feb 10, 2011 4:09 am

Re: RE:What are good books on Python?
-----------------------------------
1) You're looking for an interpreter instead. Have you tried http://www.python.org/ ?
2) Why C?

I want to build my own OS. I want to learn C, C++, OOP, and ASM.

If you want to learn C then learn C. Python is not a prerequisite to C if that's what you are thinking. Pick up some good C resources (recommended book http://www.amazon.com/Programming-Language-2nd-Brian-Kernighan/dp/0131103628). For a compiler, if you are on Linux you already have GCC. On windows you will need to install a compiler separately, I recommended the MinGW compiler, infact download Code::Blocks IDE it comes build in with MinGW and is a pretty nice IDE to use as well.

-----------------------------------
php111
Thu Feb 10, 2011 12:54 pm

Re: What are good books on Python?
-----------------------------------
Is C and C++ required to learn ASM?

-----------------------------------
Tony
Thu Feb 10, 2011 1:12 pm

RE:What are good books on Python?
-----------------------------------
If your question is "is familiarity with C or C++ syntax required to begin learning ASM", then no.
