Rishithatestertoaidev.hashnode.dev路Feb 6, 2025Day 8: OOPS in Python, Class Attributes vs Instance Attributes and Static MethodsIn Object-Oriented Programming (OOP), attributes are used to store data related to a class or an instance of that class. Python provides two types of attribute. 1. Class Attributes (Shared by all instances) 2. Instance Attributes (Unique to each obje...Tester to AI Engineer JourneyPython
Rishabh Mishrarishabhmishra.hashnode.dev路Jun 18, 2024Day 0: Embarking on My 100 Days of Python JourneyIntroduction Welcome to my 100 Days of Python journey! My name is Rishabh, and I am embarking on an exciting adventure to become proficient in Python programming over the next 100 days. I will be following the "100 Days of Code: The Complete Python P...Python100DaysOfCode
john charlesjohn-otienoh.hashnode.dev路Jan 1, 2024Variables in PythonVariables I have a value where do i store it in my computer? Well that's where variables come handy. Variables refer to 1. A location in the memory that are reserved to store the values of my code 2. A container that holds one value and has a label o...1 likePython 3
Ganesh Balimidiatozdevopscenter.hashnode.dev路Jun 1, 2023Python - Conditional Statements, Logical Operators, Code Blocks, and ScopeTodays Goal: print("Welcome to Treasure Island.") print("Your mission is to find the treasure.") #Write your code below this line 馃憞 choice1 = input('You\'re at a cross road. Where do you want to go? Type "left" or "right" \n').lower() if choice1 =...100DaysOfCode
Ganesh Balimidiatozdevopscenter.hashnode.dev路May 30, 2023100 Days of Code: The Complete Python - Day 02Understanding Data Types and String Manipulation Today Goal: Hello and welcome to the tip calculator. How much was the whole bill? Rs. 1024.54 How many people will be splitting the bill? 5 What percentage tip do you want to give? 10, 12, or 15? 12...100DaysOfCode