Filter
Exclude
Time range
-
Near
Ever wondered what __init__ actually does in Python? 🐍 Watch the full explanation in our Python series on YouTube, taught by Shameel Uddin 🎬 🔗 Link in Comment section #Python #PythonOOP #LearnPython #PythonBeginners #OOP #Programming #WebDev #hasabTech
1
11
Day 07/180 of ML Class variable vs Instance variable — simplified class Student: school = "ABC" # CLASS var → shared by ALL def __init__(self, name): self.name = name # INSTANCE var → unique per object #Python #PythonOOP #LearnPython
5
59
"Encapsulation = bundling data functions (methods) inside a class. It hides internal details from the outside world and exposes only what’s necessary. This protects your data, reduces complexity, and keeps your code modular, and safe. Code smart, not exposed. 🔐 #pythonoop
2
4
132
Learning classes in CS50 Python (free)!🐍Class Dog: def bark(self): return 'Woof!' Q: Any tips for debugging Python code? Drop your post below and let's build a knowledge-sharing vibe!👇 RESOURSE -(cs50.harvard.edu/python) #PythonOOP #LearnInPublic #programming #productivity .

2
87
🧠 What is Agentic AI? Not just ChatGPT in a wrapper. Agentic AI = LLMs Goals Memory Tools. It plans, decides & acts in loops toward outcomes. I'm learning Python OOP now — building the base for LangChain, SDKs & agents. #AgenticAI #LLM #LangChain #GIAIC #PythonOOP #AI
2
24
🚀 Python OOP conquered! Encapsulation, Inheritance, Polymorphism, Abstraction unlocked! Built dynamic projects🛠️, mastered decorators to monetize code → 💸 🙌 @ziakhan , @SheikhAmeenAlam ,@0xAsharib @Muhamma47402654 , @bushrazohaib84 #PythonOOP #CodeToCash #LearnAndEarn
1
1
20
154
🔥 Python String Methods Cheat Sheet Python provides many built-in methods to manipulate strings easily. ✅ Common String Methods Method - lower() Description - Converts to lowercase Example - "HELLO".lower() → 'hello' ----------------------------------------------- Method - upper() Description - Converts to uppercase Example - "hello".upper() → 'HELLO' ----------------------------------------------- Method - capitalize() Description - Capitalizes first letter Example - "hello world".capitalize() → 'Hello world' ----------------------------------------------- Method - title() Description - Capitalizes first letter of every word Example - "hello world".title() → 'Hello World' ----------------------------------------------- Method - strip() Description - Removes whitespace from both sides Example - " hello ".strip() → 'hello' ----------------------------------------------- Method - replace(old, new) Description - Replaces substring Example - "hello".replace("l", "w") → 'hewwo' ----------------------------------------------- Method - split(separator) Description - Splits string into list Example - "hello world".split(" ") → ['hello', 'world'] ----------------------------------------------- Method - join(iterable) Description - Joins list into string Example - " ".join(['hello', 'world']) → 'hello world' ----------------------------------------------- Method - startswith(sub) Description - Checks if string starts with substring Example - "hello".startswith("he") → True ----------------------------------------------- Method - endswith(sub) Description - Checks if string ends with substring Example - "hello".endswith("lo") → True ----------------------------------------------- Method - find(sub) Description - Returns index of substring (if found) Example - "hello".find("e") → 1 ----------------------------------------------- Method - count(sub) Description - Counts occurrences of substring Example - "hello".count("l") → 2 ----------------------------------------------- Method - isalpha() Description - Checks if all characters are alphabets Example - "hello".isalpha() → True ----------------------------------------------- Method - isdigit() Description - Checks if all characters are digits Example - "123".isdigit() → True ----------------------------------------------- Method - isalnum() Description - Checks if all characters are alphanumeric Example - "hello123".isalnum() → True ----------------------------------------------- Method - islower() Description - Checks if all characters are lowercase Example - "hello".islower() → True ----------------------------------------------- Method - isupper() Description - Checks if all characters are uppercase Example - "HELLO".isupper() → True ----------------------------------------------- 🎯 Bonus Methods Method - zfill(width) Fills string with zeros from the left -----------------------------------------------' Method - swapcase() Swaps uppercase to lowercase and vice versa ----------------------------------------------- Method - rjust(width) Right-align string with spaces ----------------------------------------------- Method - ljust(width) Left-align string with spaces ----------------------------------------------- #Python #PythonProgramming #PythonDeveloper #PythonTutorial #LearnPython #PythonCoding #PythonCourse #PythonForBeginners #PythonScripts #PythonProjects #PythonTips #PythonTricks #PythonFullCourse #PythonAutomation #PythonWebDevelopment #PythonBackend #PythonAPIs #PythonStringMethods #PythonOOP #PythonLibraries #PythonWithAI #PythonChatGPT #PythonNextjs #PythonMachineLearning #PythonDjango #PythonFlask #PythonAutomationScripts #PythonAIProjects #PythonInterviewQuestions #PythonIn60Seconds #PythonShorts #PythonTipsAndTricks #PythonCodingChallenge #PythonForBeginners #PythonFromScratch #PythonBasicToAdvanced #PythonStepByStep #PythonInHindi #PythonCodingJourney
36
12
58
2,030
6 Sep 2024
Day 12 of #100Days100Code: Built a simple guessing game in Python! 🎉 #Python #CodeNewbie #LearningByDoing #PythonOOP #100DaysOfCode
11
1
67
3,334
Day 30 of learning #Python programming language: Today, I explored Static Methods in Python. Static methods are used for utility functions that don't require access to class instances. They simplify code and enhance readability! #100DaysOfCode #PythonOOP
3
24
🚀 تعلم البرمجة الكائنية (OOP) باستخدام #Python! استكشف أهمية تعلم OOP لتعزيز مهاراتك البرمجية وتحسين قدرتك على حل المشكلات. 🐍🧠 #برمجة #تعلم_البرمجة 🎯 ما ستتعلمه: الكلاسات والأجسام (Classes & Objects): البناء الأساسي للبرمجة الكائنية. الوراثة (Inheritance): تعلم كيفية بناء وتوسيع الكلاسات لزيادة إعادة استخدام الكود. التعددية الشكلية (Polymorphism) والتحميل (Overloading): استكشف كيف يمكن للوظائف أن تتعامل مع البيانات بطرق متعددة. وأكثر: تغطية شاملة للمفاهيم الأساسية والمتقدمة في OOP لتمكنك من كتابة برامج أكثر كفاءة وقابلية للصيانة. ✨ لماذا هذا مهم: تعلم OOP باستخدام Python يفتح أبواباً لفهم أعمق للبرمجيات ويجهزك لمواجهة تحديات البرمجة المعقدة في العالم الحقيقي. 🔗 انضم إلينا لتعلم OOP وتحويل معرفتك النظرية إلى خبرة عملية: youtube.com/playlist?list=PL… #PythonOOP #ObjectOrientedProgramming #تعلم_بايثون #برمجة_كائنية

2
108
🚀 Starting my journey into Object-Oriented Programming (OOP) in #Python! My goal is to master it in 25 days. I'll be working on side projects and sharing my progress as part of my #BuildInPublic journey. Let's code! 💻✨ #PythonOOP #TechJourney
2
3
60
Day 16 of #100DaysOfCode: Brewing up code with a dash of OOP magic! ☕🧙‍♂️ Revamped the Coffee Machine project using OOP. Now serving code in a classier style!#PythonOOP #CodeBrewery #ObjectOrientedMagic
5
42
26 Apr 2023
hitting some hurdles on our console. 💻 We're unstoppable when we put our heads together! 👨‍💻👩‍💻 #30DAYSOfCodingWithMamuroAndAdeniyi @niyero10 #MyTechJourney #backend #PythonOOP #sqlAlchemy #teamwork #codinglife
2
27
Replying to @mayour26
This thread is saved to your Notion database. Tags: [Pythonoop]
The concept of Exception Handling is used in Python to handle the exceptions and errors that occur during the execution of any program. tutorialwithexample.com/pyth… #tutorialwithexample #learning #python #PythonOOP #100DaysOfCode #pythonexception #100DaysOfCodeChallenge
1
2
In python, operator overloading is used to perform specific operations on the given operands. Also, operations that any p..... tutorialwithexample.com/pyth… #tutorialwithexample #learning #python #PythonOOP #100DaysOfCode #pythonoperator #100DaysOfCodeChallenge #operatoroverloading
2
2
Replying to @mayour26
Saved this Tweet to your Notion database. Tags: [Pythonoop]
Static keyword used for creating class variables and methods that belong to the class and are shared by all the objects of the class. tutorialwithexample.com/pyth… #tutorialwithexample #learning #python #PythonOOP #100DaysOfCode #pythonstatic #100DaysOfCodeChallenge
4
4