Which programming-programs are the best?
Which programming-programs are the best?
Could anyone give me a tip about which programs I should download for the best Java, C++, ect. programming.
I'm sorry to ask such a noob question, but I never did a lot about coding/programming (just noob things like scriptkiddies do... ) and I think it should be time to learn more about it. Just need the right programs to start...
If someone could just give me some sites or names of the programs they use for programming, I would really appreciate it. Just the programmes that you guys use daily for programming.
Greetz,
Triton456
I'm sorry to ask such a noob question, but I never did a lot about coding/programming (just noob things like scriptkiddies do... ) and I think it should be time to learn more about it. Just need the right programs to start...
If someone could just give me some sites or names of the programs they use for programming, I would really appreciate it. Just the programmes that you guys use daily for programming.
Greetz,
Triton456
Last edited by Triton456 on Wed Nov 04, 2009 1:31 pm, edited 1 time in total.
Play a Windows CD backwards and hear satanic messages. That’s nothing, play it forwards and it installs Windows.
Music = Life
Same Shit - Different Day
Music = Life
Same Shit - Different Day
You should probably start with Python.. Easy to learn.
www.python.org
I believe that is the website.
www.python.org
I believe that is the website.
See through the master
Become the master
Become the master
- PaRaDoX
- Posts: 708
- Joined: Fri Aug 22, 2008 5:52 am
- Location: In your fridge, waiting to pop out and scare you.
I still like VB (although its not the most programmer friendly thing ever).S3th wrote:You should probably start with Python.. Easy to learn.
www.python.org
I believe that is the website.
Python is what I got started on >:3
~You are a glitch in my reasoning.
Well I am currently working to develop my Python knowledge, and I am going to be attending a summer school for "talented and gifted" students. Haha, being one of the top in my Technology classes got me a recommendation to attend, they are offering courses in python, including building my own search engine and more.. It's only $360 too.
See through the master
Become the master
Become the master
Python doesn't work very good...
I downloaded Python and Notepad++ to get started. The easiest things in python does works:
print("Hello, World!")
But when I make other simple codes from http://en.wikibooks.org/wiki/Python_Programming/Arrays it doesn't work anymore. Each time if I run it (with cmd, like they say in the wikibook) I get the same error over and over again...
Am I just copying it wrong... or are those codes on wikibooks incorrect?
Most of the times I got this error you see below.
For example:
I open cmd, go to the correct map and typ: python example3.py
(example3.py is the same as you can see at the url above...)
Then it gives this error:
This error I get with almost every code that goes wrong, even a few of the codes I've tried from the challnge-solved section.
Could anyone tell me what I'm doing wrong? Should I use a different Editor then Notepad++? Shouldn't I open it with CMD? Should I take another "Python for beginners" then the wikibook I use? Or do I need to do something else?
(BTW: I know I'm noob with coding and programming )
Greetz,
Triton456
print("Hello, World!")
But when I make other simple codes from http://en.wikibooks.org/wiki/Python_Programming/Arrays it doesn't work anymore. Each time if I run it (with cmd, like they say in the wikibook) I get the same error over and over again...
Am I just copying it wrong... or are those codes on wikibooks incorrect?
Most of the times I got this error you see below.
For example:
I open cmd, go to the correct map and typ: python example3.py
(example3.py is the same as you can see at the url above...)
Then it gives this error:
Code: Select all
File, "example3.py", line 1
>>> spam
^
SyntaxError: invalid syntax
Could anyone tell me what I'm doing wrong? Should I use a different Editor then Notepad++? Shouldn't I open it with CMD? Should I take another "Python for beginners" then the wikibook I use? Or do I need to do something else?
(BTW: I know I'm noob with coding and programming )
Greetz,
Triton456
Play a Windows CD backwards and hear satanic messages. That’s nothing, play it forwards and it installs Windows.
Music = Life
Same Shit - Different Day
Music = Life
Same Shit - Different Day
Oops..
Oops... You're right, I did skip the part about the interactive modus...
Thnx, now I understand what I did wrong with the examples on the url in the beginning of the post. But it still don't explanes why the few codes I tried from the challenge solved-section didn't work... They weren't in the interactive mode... And unfortunatly I can't post them to show the mistake in this post... Perhaps could someone that already sold the Pi Hates Nine-challenge at the Challenge Solved-section look at the code of the one that used Python and explanes why it gives a error when I try it.
Thnxs for the answer again, Karian Next time I'll try to read everything
Greetz,
Triton456
Thnx, now I understand what I did wrong with the examples on the url in the beginning of the post. But it still don't explanes why the few codes I tried from the challenge solved-section didn't work... They weren't in the interactive mode... And unfortunatly I can't post them to show the mistake in this post... Perhaps could someone that already sold the Pi Hates Nine-challenge at the Challenge Solved-section look at the code of the one that used Python and explanes why it gives a error when I try it.
Thnxs for the answer again, Karian Next time I'll try to read everything
Greetz,
Triton456
Play a Windows CD backwards and hear satanic messages. That’s nothing, play it forwards and it installs Windows.
Music = Life
Same Shit - Different Day
Music = Life
Same Shit - Different Day
If you are running Python 3 you will find that you need to make small changes to Python 2 code which is probably what you are reading unless explicitly mentioned otherwise, if this is the case I suggest you get python 2.6.4 instead as most introductory material for Python is probably based on 2.
The code Mad Hacker submitted has one incompatibility with Python 3, the print statement needs to be changed to a function:should be
Next up the code has an error in it (wont work with Python 2 or 3):
this is because of the "and j != " which you can get rid of. The last problem I can see is that pi isn't in the code snippet so you have to add that yourself, if you don't you will end up getting "NameError: name 'pi' is not defined", so all you have to do is add it to your code
The code Mad Hacker submitted has one incompatibility with Python 3, the print statement needs to be changed to a function:
Code: Select all
print bigstr
Code: Select all
print(bigstr)
Code: Select all
Line 9
elif j != " " and j != and j != "\t":
^
SyntaxError: invalid syntax
I currently use 2.6
Sooo why would I want to go to 3?
Sooo why would I want to go to 3?
Read, know, do. Discuss topics of ANY kind, including unconventional or taboo topics. Free speech, open minds, alternative thinking. http://www.totse2.com
thankies :3
Read, know, do. Discuss topics of ANY kind, including unconventional or taboo topics. Free speech, open minds, alternative thinking. http://www.totse2.com
Don't wanna complain but these threads always end up telling people what they self 'know' and how fast they 'learnt' it. i feel that's abit funny tbh.
The whole "system" is a number of people creating a code all together, this code loops and is there for a "system".
System Zero could also be confirmed with one word "Hacker's"
System Zero could also be confirmed with one word "Hacker's"
-
- Posts: 7
- Joined: Tue May 19, 2009 12:02 am
i don't remember which one this was, would you mind providing me with a link?CodeX wrote:If you are running Python 3 you will find that you need to make small changes to Python 2 code which is probably what you are reading unless explicitly mentioned otherwise, if this is the case I suggest you get python 2.6.4 instead as most introductory material for Python is probably based on 2.
The code Mad Hacker submitted has one incompatibility with Python 3, the print statement needs to be changed to a function:should beCode: Select all
print bigstr
Next up the code has an error in it (wont work with Python 2 or 3):Code: Select all
print(bigstr)
this is because of the "and j != " which you can get rid of. The last problem I can see is that pi isn't in the code snippet so you have to add that yourself, if you don't you will end up getting "NameError: name 'pi' is not defined", so all you have to do is add it to your codeCode: Select all
Line 9 elif j != " " and j != and j != "\t": ^ SyntaxError: invalid syntax
EDIT: found & fixed it(except for pi, i don't have the file anymore), thanks for pointing those out
~~~~
note: i'm not necessarily a mad hacker, i'ts my screen name
note: i'm not necessarily a mad hacker, i'ts my screen name
-
- Posts: 74
- Joined: Sat Dec 05, 2009 1:23 am
i find python to be a easy coding writing easy, its the fact that there are very few free manuals along with paper books that actually work well. i personally am using "learning python" by O'REILLY. desent... oh btw...to who ever had the hello world comment, almost all languages start by teaching u that frase