Mastering Python Comprehensions: Crafting Efficient and Readable CodeUnlock the Power of Python Comprehensions to Enhance Your Code's Clarity and PerformanceJun 4, 2024·4 min read
A Date With the Datetime Module in Python | Part - 1We can extract current date using two classes. Using date class from datetime import date today = date.today() Using datetime class from datetime import datetime today = datetime.today() OR from datetime import datetime now = datetime.now() ...Oct 22, 2022·1 min read
Quick Guide to Object-Oriented Programming With PythonWhat is OOP (Object-Oriented Programming)? If you try to look on the internet or in any textbooks, there is no specific definition of OOP. In general, object-oriented programming is considered a combination of 4 pillar concepts. Those concepts are: ...Jul 21, 2022·8 min read
Delete Files & Directories Using PythonSo far, we have learned many basic concepts of Python. We learned about: Data types & Variables String Manipulation Methods List & Dictionary Manipulation Methods Conditional Statements Loops File Handling But now what? We can not be good at ...Jul 15, 2022·6 min read
Organize Any Files and Folders Using PythonOrganize Download Folder 3 main things will help us decide how we want to organize our files. How do we want to manage files? What kind of files do we want to organize? Which directory do we want to organize? How do we want to organize files? We...Jun 22, 2022·7 min read
File Handling in PythonJust to refresh our memory, so far, we have seen all basics of python including variables, data types, functions, conditional statements and loops. You can check out them all on my Python 101 series page. In every software development, we have to do ...Jun 17, 2022·8 min read
Modules and Packages in PythonIn real-life development, we do not write every single line of code. If there are any resources or libraries available we generally use those as long as the source is trustable. It is just like the old saying, "If something is available use it, don't...Jun 10, 2022·5 min read