Hmm.
I have been considering python.
Are there any good website tutorials anyone could point me towards for learning python?
If you are into challenges, do a project, something that you want or need, less useful but good nonetheless: copy something.
Some ideas:
If you are into movies:
- A movie suggestion engine: Get data from IMDB, then input your favorite movies and movies you watched, fetch related movies with good rating that you didn't watch yet.
- Maybe a movie watchlist? A list of movies you watched and your reviews, and movies you wanna watch
If you are into books:
- Watch/Monitor amazon prices/deals. They are always changing, so write something that watches prices every hour or everyday of books in your wishlist and send you an email if there's a good deal. Or plot the prices changing overtime, so you can guess when is the best time to buy it.
If you are into cryptocurrencies:
- Learn how to extract data from blockchain. Information is public, no?
- Or monitor prices directly from the exchanges
Daily tasks automation:
- How about renaming all files in a directory? Maybe replacing all whitespaces with "-"?
- How about some image processing? Apply common filters to photos using some Python library.
___
If you are NOT into challenges and wanna learn the easy way, just the syntax and do nothing relevant or interesting. Online resources should be enough:
https://learnxinyminutes.com/docs/python/
https://learnpythonthehardway.org/
Or look into some useful libraries like Matplotlib (draw plots easily) and scikit-learn and OpenCV (Follow a tutorial and write a face detection script)