Akshay Siwalakshay-siwal.hashnode.dev·Nov 17, 2024The Mystery of if __name__ == '__main__': in Python – Explained with a Post Office AnalogyWhen you're learning Python, stumbling upon the line if __name__ == '__main__': might feel like deciphering a secret code. But trust me, it’s simpler than it seems! This line serves as a gatekeeper, determining whether your Python script should execu...DiscussPython
Krishnat Ramchandra Hogalekrish27.hashnode.dev·Nov 6, 2024🐍 Basics of Python : Syntax, Data Types, Type Casting, Variables, Operators, and More!Python is known for its simplicity and readability, making it an ideal choice for beginners. In this post, we’ll go through fundamental Python concepts, including data types, variable scope, operators, and a few hands-on examples. If you're just star...DiscussPython
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 23, 2024Mutable and Immutable Objects in Python, Copying Objects, Interning and CachingMutable and Immutable Objects in Python In Python, everything is an object, and these objects can be classified into two main categories based on their mutability: Mutable Objects: Objects that can change their state or contents after they are creat...DiscusspythonPython
Srimanth MantripragadaforDSA In Pythonmantri-1724774733617.hashnode.dev·Aug 27, 2024Article 1 of learning DSA in Python.A quick intro about myself, I am Srimanth Mantripragada from Hyderabad, India. I am recently graduated from Neil Gogte Institute of Technology in CSE[AIML]. A wannabe data scientist/analyst who's now trying hard to actually be a data scientist/analys...Discuss·1 like·70 readsdata structure and algorithms
Tarun Sharmatapstechie.hashnode.dev·Aug 13, 2024How to Use super() in Python: Inheritance and Method Resolution SimplifiedIntroduction In Python, the super() function is an essential tool when working with object-oriented programming (OOP). It allows you to call methods from a parent class within a child class, which can be particularly useful in complex inheritance hie...DiscussPython Interview Prep: Essential Concepts and TechniquesPython
ashwini purwatashwini23.hashnode.dev·Jul 18, 2024Basic of PythonWhat is Python? What are the benefits of using Python Python is a high-level, interpreted, general-purpose programming language. Being a general-purpose language, it can be used to build almost any type of application with the right tools/libraries. ...DiscussPython
Mugil Rajalearntocodeeasy.hashnode.dev·Jun 15, 202410 Python Programs for Beginners: Simple Explanations and ExamplesHey, my friend, congratulations on starting to learn Python. I'm happy to share my knowledge with you. Let's dive into some basic and popular Python problems. "Sit back, relax, and enjoy." Sure! Here's a more detailed explanation of each program in s...Discuss·2 likesPython
Sujit Nirmalblackshadow.hashnode.dev·Jun 10, 2024Libraries to Get Started with Machine LearningEmbarking on a journey into the world of machine learning can be both exciting and overwhelming. One of the key steps to getting started is familiarizing yourself with the essential libraries that will serve as your tools and building blocks. In this...Discuss·10 likes·27 readsprofduct build
Muhammad Ihsanemhaihsan.hashnode.dev·Jun 4, 2024Mengenal Variabel, Fungsi Print dan Input di PythonPython adalah bahasa pemrograman yang sangat populer karena kemudahan penggunaannya dan sintaks yang sederhana. Penggunaan Python sangat luas dari backend, automation, analisis data hingga kecerdasan buatan. Artikel ini akan menjadi permulaan dalam s...Discuss·1 likeSeri Belajar PythonPython
Muhammad Abdiel Al Hafizabdiel.hashnode.dev·May 18, 2024Understanding Unit Testing in Python: Testing Laundry Price CalculationsWhat is Unit Testing? In the world of software development, ensuring that your code works correctly is crucial. This is where unit testing comes into play. Unit testing is a type of software testing where individual units or components of the softwar...Discuss·1 like·70 readsPython