Hi everyone! π I have big news! The alpha version of my Practical Python Projects book is out! It took me two years and countless hours to get to this stage and I am so proud of it. You can buy it now at Feldroy.com. The final version of the book will be more expensive than the alpha price of $29.99. Moreover, the first 25 people to use the code ppp-yasoob-blog will get the book at an extra 15% off.
Hi everyone! π I have big news! The alpha version of my Practical Python Projects book is out! It took me two years and countless hours to get to this stage and I am so proud of it. You can buy it now at Feldroy.com.
The final version of the book will be more expensive than the alpha price of $29.99. Moreover, the first 25 people to use the code ppp-yasoob-blog
will get the book at an extra 15% off. This is a wonderful opportunity to buy the book at a lower cost and get all future updates to this version for free!
The major reason for writing this book is that only a handful of project-based books existed in 2018. As far as I am aware, even today only a few of them are out there. When learning to program, most books, websites, and tutorials focus on teaching the intricacies of the language. They do not teach how to create and implement end-to-end projects on real-world topics. This often leaves a void in peopleβs understanding of how to execute on the very things that often inspire them to get into coding.
This book demonstrates how to combine different libraries and frameworks to build amazing end-to-end projects. I use Python 3.8 but it should work with all Python versions above 3.0.
A few of the projects that we will be implementing in this book are:
moviepy
This book contains something for programmers of all skill levels. If you know how to use different Python libraries on their own but donβt know how to combine them to make something unique, this book is going to be a treat. A basic familiarity with Python is expected before you start with this book. If you have read any intro to Python book, you should be fine. If you havenβt read any intro book, go through the first few chapters of Automate The Boring Stuff With Python (online version is free) and you should be well equipped to tackle this book.
In this tutorial, youβre going to learn a variety of Python tricks that you can use to write your Python code in a more readable and efficient way like a pro.
Today you're going to learn how to use Python programming in a way that can ultimately save a lot of space on your drive by removing all the duplicates. We gonna use Python OS remove( ) method to remove the duplicates on our drive. Well, that's simple you just call remove ( ) with a parameter of the name of the file you wanna remove done.
In the programming world, Data types play an important role. Each Variable is stored in different data types and responsible for various functions. Python had two different objects, and They are mutable and immutable objects.
Magic Methods are the special methods which gives us the ability to access built in syntactical features such as β<β, β>β, β==β, β+β etc.. You must have worked with such methods without knowing them to be as magic methods. Magic methods can be identified with their names which start with __ and ends with __ like __init__, __call__, __str__ etc. These methods are also called Dunder Methods, because of their name starting and ending with Double Underscore (Dunder).
The OS module is a python module that provides the interface for interacting with the underlying operating system that Python is running.