Rishithatestertoaidev.hashnode.dev·Jan 21, 2025Day 3 of My Python Journey: Exploring Dictionaries and SetsHello, fellow Python learners! 🚀 Today, I dove into two fundamental data structures in Python: Dictionaries and Sets. Both are powerful and versatile, with unique features that make them essential tools for solving a variety of problems. Here’s a su...Tester to AI Engineer Journeypythonday2
Krish Patelinner-working-python.hashnode.dev·Jan 19, 2025Simple Explanation of Python Inner workingExplanation of Python Inner working High-Level Language : Python is a high-level, interpreted language, meaning you write code in a human-readable form, and Python takes care of translating it into machine code. Python Interpreter : Your Python co...#PythonInternals
Fabrice Sangwafabricesangwa.hashnode.dev·Nov 27, 2024Chapitre 1 : 🚀 Débuter avec Python - Posez des Bases Solides 🐍À l’issue de ce chapitre, vous serez capables de : Utiliser efficacement la fonction print() et ses options avancées (sep, end, caractères spéciaux). Assembler des chaînes de caractères avec la concaténation. Identifier et manipuler les types de d...6 likes·645 reads#CodeForBeginners
Abu Precious O.btere.hashnode.dev·Oct 22, 2024Understanding TypeError: Using len() with Integers in PythonPython is a powerful language, but even seasoned developers can run into errors. One common mistake occurs when trying to use the len() function on an integer. In this post, we’ll explore why this happens and how to handle it. The len() function is u...typeerror
Arnav Singhpythonfornoobs.hashnode.dev·Oct 7, 2024Python Programming Basics: Statements, Comments, and Data TypesWhen learning Python, understanding the core building blocks like statements, comments, variables, and data types is essential. These basics serve as the foundation for writing effective and efficient Python code. In this article, we’ll break down ea...11 likesPython for NoobsPython-Statements
Archana Prustyarchana77.hashnode.dev·Sep 21, 2024Introduction To Program And Linux Commands For New ProgrammersProgram : Program is the combination of information & Operations/ instructions. Ex: x = 10 #information y = 20 # information res = x + y # operation print (res) #operation Classification of Program : Any program can be classified into TWO types : 1....Python basics
Debasmita Adhikaridebasmita-a.hashnode.dev·Aug 22, 2024Loop Control statements in Python : break, continue, passIn Python, we have 3 loop control statements : break, continue and pass. break When the condition satisfies, the loop breaks and comes out of the loop. for i in range(10): print(i) if i == 5: break # It will print : 0 to 5 and once t...Python basics
Nabaranjan palatasinghnabaranjan1.hashnode.dev·Aug 16, 2024Python Basics Part - 1I am writing this blog on Python basics and trying to give some practical examples. Here let's discuss Syntax, rules, syntax errors, and practical code examples. synatx:-In Python, the syntax is like the rules of grammar for the computer—it tells the...11 likes·53 readsPython
Tarun Sharmatapstechie.hashnode.dev·Aug 11, 2024Mastering Exception Handling and Custom Exceptions in Python: A Comprehensive GuideException handling is a crucial aspect of writing robust and fault-tolerant Python code. It allows you to manage errors gracefully and ensure that your program can handle unexpected situations without crashing. This article will cover the basics of e...Python Interview Prep: Essential Concepts and Techniquesexceptionhandling
Tarun Sharmatapstechie.hashnode.dev·Aug 11, 2024Exploring the Basics of Python Modules and PackagesWhat Are Modules? A module is simply a file with Python code. It can contain functions, classes, and variables. Modules help organize code into manageable chunks. Creating a Module Let’s say you have a file named math_utils.py: # math_utils.py def a...Python Interview Prep: Essential Concepts and TechniquesPython