Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
bahua129045yPick a search engine and use it to search for python. There are countless excellent resources. I cannot recommend a specific one. SEO will handle that. That's what it's for.
-
@BigDaddyAy
Python is a high-level language that abstracts away a fuckton of things.
If you learn Python first, you won't know about memory management, pointers or other more low-level things, that are very much relevant for performance and memory safety.
I recommend you to learn C.
It may seam hard, but the stuff you'll learn is relevant in most languages. -
If you ask someone for help, don't just tell them "help code not work"; send them the code, tell them what your code is supposed to do, what the error is and what you've already tried to solve the issue.
-
Aand devrant thought again that @metamourge's comment "Don't" was worth cencoring. You can still see it in his profile so it was not deleted.
-
@metamourge Learning C really sucks as newcomer. Let them start with high-level and then go lower.
-
Hazarth95125yCreate a simple Guess the number game first.
- This will get you to set up the environment, print output, get input from user, importing dependencies and do a simple if logic with it...
Then a simple text game with two rooms to walk between, an inventory and at least two items to pick up to win (one in each room maybe? Up to you!)
- This will teach you about loops, bigger structures like arrays and dictionaries and will give you something fast that you accomplished and a nice sandbox to play with
By the end you'll know all the basic features of the language and it shouldn't take long to finish and essentially should be fun. From there on you are free to explore and do whatever you want. At this point Id suggest you try modifying the game to use functions and classes but chances are you will learn about those just by googling the answer to the first two tasks
This works for any language you wish to learn :)
Hey im new to programming. Im trying to learn python do you guys have any tips and tricks.
question