![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Programmer
Join Date: Feb 2005
Posts: 86
Rep Power: 0
![]() |
ok
i downloaded python i went through a good tutorial i dont think i know all the basics yet i was wondering what exactly can be done with python this is the only programming language i know and what other programming language could i learn next and could you give me a link to the downloading page thankyou |
|
|
|
|
|
#2 |
|
Professional Programmer
|
There's a lot you can do with python, you can write games with python, do complex bio-computations with python, write web-scripts, anything you want. If you're looking for another programming language, try C/C++. if you're running windows www.bloodshed.net has a free compiler Dev-C++, or onn linux gcc will do the trick.
|
|
|
|
|
|
#3 |
|
Programmer
Join Date: Feb 2005
Posts: 86
Rep Power: 0
![]() |
how would you make games
i dont understand how you would be able to add graphics by typing words i have windows but i partitioned my hard drive and i am getting linux on the second partition |
|
|
|
|
|
#4 |
|
Professional Programmer
|
well, you use external libraries, so you would call functions. example (this is not real code)
openwindow("Window Title");
drawLine(10, 10, 20, 20); draw a line from (10,10) to (20,20)glad to hear you're thinking of installing linux. |
|
|
|
|
|
#5 |
|
Programming Guru
![]() Join Date: Oct 2004
Location: namespace std
Posts: 1,246
Rep Power: 5
![]() |
to use graphics you would make calls to function libraries that you didn't write yourself. Qt is one example.
__________________
i put on my robe and wizard hat... Have you ever heard of Plato, Aristotle, Socrates?...Morons. |
|
|
|
|
|
#6 |
|
Programming Guru
![]() Join Date: Oct 2004
Location: namespace std
Posts: 1,246
Rep Power: 5
![]() |
for a newbie, i wouldn't suggest going after a graphically based application just yet. try some console apps first>>the command line ones.
__________________
i put on my robe and wizard hat... Have you ever heard of Plato, Aristotle, Socrates?...Morons. |
|
|
|
|
|
#7 | |
|
Programmer
Join Date: Feb 2005
Posts: 86
Rep Power: 0
![]() |
Quote:
what do yu mean by "console apps the comand line ones" ? |
|
|
|
|
|
|
#8 |
|
Professional Programmer
|
aplications that run in the command line, a place that only outputs text. it's my happy place. i go there
|
|
|
|
|
|
#9 |
|
Professional Programmer
Join Date: Feb 2005
Posts: 434
Rep Power: 4
![]() |
Let's assume you have installed Python23 on your Windows Box. There are a couple of additional downloads that expand your installation to do something useful.
1. An IDE, where you write, troubleshoot and run your programs from. I like PythonWin 2.3.4 check: http://starship.python.net/crew/mhammond/ 2. A library to run Windows GUI stuff with. wxPython is very good. Also has many examples. Check out: http://wiki.wxpython.org/ 3. A library for Graphics thingies. Use PIL the Python Imaging Library, comes with many nice sample files, from: http://www.pythonware.com/products/pil/index.htm 4. Something completely different for 3D imaging, with lots of groovy samples. Check VPython at: http://vpython.org/ 5. Wanna go nuts? Look at tons of Python resources at: http://www.cbel.com/python_programmi...e/?order=alpha These downloads are free, make sure you match your version of Python. |
|
|
|
|
|
#10 | |
|
Programmer
Join Date: Feb 2005
Posts: 86
Rep Power: 0
![]() |
Quote:
you know your icon sort of fits you |
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|