Prescient Posted August 12, 2016 Posted August 12, 2016 Hey, I have had urges to learn how to code, id like to code python because that is what i am doing next year for my GCSE computing but ive had no success. Id like people to give me advise on how to get started for coding python and maybe even how you got started coding and the path you took, because i am looking to pursue python and want to be able to code in this language fluently. I think this will not only be useful for me but also be an excellent pass time over the summer break. Thanks, ~Prescient Quote
Vectre Posted August 12, 2016 Posted August 12, 2016 Did CompSci at GCSE and learned Python during it, you don't really go too in-depth so you probably won't have too much trouble. Fantastic resource that's free is CodeAcademy - https://www.codecademy.com/learn/python. That's how I got started. Python is very versatile, lots of people criticize it for being slow as it's an interpreted not compiled language. However this isn't really applicable unless you have a VERY complex program. At that point, you would probably not be posting on here. :) Just a piece of advise, once you've completed the course and have a basic understanding of Python (and programming principles) start a little project. Whether it's a Python compiler for Duckyscript, or whatever, you learn so much more this way as you gain practical knowledge from reading sites like Stack Overflow and you then have something to show for it which really makes it worth while. Quote
Prescient Posted August 12, 2016 Author Posted August 12, 2016 1 hour ago, Error404 said: Did CompSci at GCSE and learned Python during it, you don't really go too in-depth so you probably won't have too much trouble. Fantastic resource that's free is CodeAcademy - https://www.codecademy.com/learn/python. That's how I got started. Python is very versatile, lots of people criticize it for being slow as it's an interpreted not compiled language. However this isn't really applicable unless you have a VERY complex program. At that point, you would probably not be posting on here. :) Just a piece of advise, once you've completed the course and have a basic understanding of Python (and programming principles) start a little project. Whether it's a Python compiler for Duckyscript, or whatever, you learn so much more this way as you gain practical knowledge from reading sites like Stack Overflow and you then have something to show for it which really makes it worth while. Thank you so much, ive checked out CodeAcademy and it looks alot better to interpret than the other material ive read. Im actually pretty excited about this aha, thanks again Quote
Vectre Posted August 13, 2016 Posted August 13, 2016 7 hours ago, Prescient said: Thank you so much, ive checked out CodeAcademy and it looks alot better to interpret than the other material ive read. Im actually pretty excited about this aha, thanks again No problem. Good luck with learning! :) Quote
neoknight88 Posted August 16, 2016 Posted August 16, 2016 While Codecademy is a good start, you may also want to check out your local library. They'll likely have some books on programming, usually C++, C, and Java if nothing else. Having multiple resources usually helps when trying to learn coding. Quote
NotPike Posted August 24, 2016 Posted August 24, 2016 Besides reading some of No Starch Press's books on the topic I found this tutorial series very useful. Like what everyone said, having a project in mind relay helps with the learning process. Quote
Rkiver Posted August 25, 2016 Posted August 25, 2016 If you've got like $15 to spare, https://www.humblebundle.com/books/joy-of-coding-book-bundle Quote
SuperFastYo Posted August 26, 2016 Posted August 26, 2016 I'm a personal fan of teamtreehouse.com Quote
Foxtrot Posted August 27, 2016 Posted August 27, 2016 On 12/08/2016 at 11:00 PM, Vectre said: Did CompSci at GCSE and learned Python during it, you don't really go too in-depth... My CompSci GCSE (only a year or so ago) Python consisted of Hello worlds, a little game using randint() and a couple of functions. Quote
Vectre Posted August 27, 2016 Posted August 27, 2016 19 hours ago, Foxtrot said: My CompSci GCSE (only a year or so ago) Python consisted of Hello worlds, a little game using randint() and a couple of functions. Yeah, mine was pretty similar. Quote
Jason Cooper Posted September 6, 2016 Posted September 6, 2016 Best advice when first learning to code is to set yourself simple goals. Too many people try to learn to code by tackling a complex problem, but you really need to learn the basic concepts before tackling anything complex. Try creating python scripts to do each of the following: display a message ("hello world" is very common one) accept some input from the keyboard and display a message with it in (perhaps ask the users name then display a hello message to them e.g. "Hello Fred") count from 1 to 10 (e.g. "1 2 3 4 5 6 7 8 9 10") accept two numbers from the keyboard and then output their total accept as many numbers from the keyboard until the user enters something that isn't a number and then display their total accept as many numbers from the keyboard until the user enters something that isn't a number and then display their average Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.