I need help in master Python from start to finish so I can progress to machine learning
For further actions, you may consider blocking this person and/or reporting abuse
I need help in master Python from start to finish so I can progress to machine learning
For further actions, you may consider blocking this person and/or reporting abuse
Ruairà O'Brien -
Krishna Agarwal -
Ashutosh Kumar -
Anuradha Aggarwal -
Once suspended, godwin_france will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, godwin_france will be able to comment and publish posts again.
Once unpublished, all posts by godwin_france will become hidden and only accessible to themselves.
If godwin_france is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Saharan-sub.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag godwin_france:
Unflagging godwin_france will restore default visibility to their posts.
Top comments (4)
You can start of with Automate boring stuff with python book/courses . I took some lectures from there it seems good .
I used 2 methods to learn python :
I learnt python by teaching myself how to web scrape and there was plenty of handfulll things that can come in handy that you will learn to process things faster for example :
list/dict generators, enumarate, filter, for each etc. I don't know if you knew any language prior to python, but if you did, then learning python should be a breeze :)
I kept learning by using datasets and analysing them using numpy, scipy, pandas matplotlib which you will come across if you are into ML / Data Science
There is plenty of resources online that teach you these python shanenigans, you will easily find them. Try checkking other people's analysis too on kaggle.com or github.
I hope I pointed you in the right direction.
Good luck :))
Hi Stefan,
thanks for the generous feedback. I did a bit of C++ back in school, so I have all teh fundamentals.
I learn by doing activities, so I will like to start with the first point you gave. Where can I get web scraping to do ? if you have projects on it, I do not minding working on them for free as a means to learn on the go.
I got no projects on it, but used to find some while freelancing so maybe thats where you need to point .
You can do something like this as your own project:
Make a twitter bot of your own that has searches by hashtags user searches auto liking log in keyword by user commenting etc. Schedule jobs for every 8 hours for liking or something and then save liked posts or whatever you collect into a databse of your choice. I started of with postgres and then moved to mongodb as it had a more pleasent interface for Python
Try collecting some github stuff, or you can choose any website of your choice and just collect the data if it looks interesting to you :))
You will run into selenium often
Always look for ways arround selenium because its much faster by using requests woth lxml or BeautifulSoup. Allthough obviously for a twittet bot you will end up needing need it 😄
And have in mind not all sites allow this so choose carefully else you will run into captchas often 😂
selenium sounds like something out of Harry Potter...LOL
I will add all these to my Python to do, thanks once again!