VASU_SHEDALA Profile Banner
Vasu Shedala Profile
Vasu Shedala

@VASU_SHEDALA

Followers
8
Following
216
Media
59
Statuses
75

21_M learning \n code

Maharashtra, India
Joined December 2019
Don't wanna be here? Send us removal request.
@VASU_SHEDALA
Vasu Shedala
1 year
Day 63: Mastered method modification in Python!๐Ÿ› ๏ธ With minimal changes, you can get the most out of your code while keeping it clean and elegant. ๐Ÿ’ก Refactoring has never been this satisfying! Clean code = Happy coder. Whatโ€™s your top tip for cleaner code? #100DaysOfCode #Python
0
0
4
@VASU_SHEDALA
Vasu Shedala
1 year
Day 62: Busy day, but I dove into Python's magic methods & dunder methods like __str__, __repr__, and __add__. These little tricks make your code magical! โœจ Why write boring classes when you can make them truly Pythonic? #100DaysOfCode #PythonTips Whatโ€™s your favorite magic mthd
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 61: Exploring Magic (Dunder) Methods in Python โœจ Magic (or dunder) methods are special methods in Python that are surrounded by double underscores (__). These methods allow you to customize the behavior of your objects for various operations.
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
โœจ Day 60 of #100DaysOfCode! Discovered the power of super() in Python! ๐Ÿš€ super() lets you call methods from a parent class in your child class. Perfect for following the DRY (Don't Repeat Yourself) principle. ๐Ÿ’ก Keep your code clean, efficient, and reusable! ๐Ÿ› ๏ธ #Python #OOP
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 59: ๐ŸŒŸ Today, I learned how to uncover the secrets of Python objects using: dir(): Lists all attributes & methods. __dict__: Reveals instance-specific attributes. help(): Full documentation on an object! These tools are a coder's magnifying glass ๐Ÿ” #Python #100DaysOfCode
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 58 of #100DaysOfCode Discovered the power of @classmethod as an alternative constructor! ๐Ÿš€ It helps cleanly handle data like strings and create objects efficiently. ๐Ÿ’ก Example: Converting "John-122000" into an Employee object with just one method! ๐Ÿคฏ #Python #CodeNewbie
0
0
3
@VASU_SHEDALA
Vasu Shedala
1 year
๐Ÿš€ Day 57: Learned about the power of @classmethod in Python! Normally, instance methods deal with self, but by using @classmethod, we work with cls to modify class-level variables. Perfect for when you need to make changes that impact all instances of a class. #100DaysOfCode
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
๐Ÿ“š Day 56 Built a basic Library Management System in Python! ๐Ÿ”ฅ --Add books ๐Ÿ“– --Display all books in the library โœจ Still room for improvement, but it's functional for now. Check it out: What do you think? ๐Ÿค” #100DaysOfCode #Python
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
"Grateful for a peaceful and productive day. After a month of inconsistency, today marks the start of something better. Step by step, building momentum. #Gratitude #Productivity #NewBeginnings" Jay shree Ram
1
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
๐Ÿš€ Day 55 of #100DaysOfCode ๐ŸŽ“ Learned Instance vs Class Variables: <>Instance: Specific to an object โ†’ emp1.raise_amount = 0.3 <>Class: Shared across all objects โ†’ companyName = "Apple" โšก One changes, the other stays constant! #Python #CodeNewbie
1
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
"Learning to code isn't easy, but you know whatโ€™s harder? Not starting. ๐ŸŒŸ Today, I chose to build my future one line of code at a time. #Python #SelfImprovement"
0
0
1
@VASU_SHEDALA
Vasu Shedala
1 year
Day 54: Learning Static Methods in Python! Today I tackled @staticmethod and it's wild how methods can exist without self or cls!๐Ÿ’ก Theyโ€™re perfect for utility functions that donโ€™t need to touch instance data. Still wrapping my head around it! #Python #100DaysOfCode #CodeNewbie
0
0
4
@VASU_SHEDALA
Vasu Shedala
1 year
๐ŸŽฎ Day 53: Python Magic! ๐Ÿ๐Ÿ’ฆ๐Ÿ”ซ I built the Snake-Water-Gun game using Pythonโ€™s random module and functions. Test your luck and beat the computer! โœจPython makes it easy to turn ideas into reality! ๐Ÿ ๐Ÿ’ป Check it out: #Python #100DaysOfCode #CodeNewbie #GameDev
0
0
4
@VASU_SHEDALA
Vasu Shedala
1 year
Day 52: Learned about Inheritance in OOP! ๐Ÿ ~With inheritance, you can: 1) Reuse a base class in a new class. 2) Modify or extend features in the new class. 3) Keep the process going down the line! Code smarter, not harder! ๐Ÿš€ #Python #OOP #100DaysOfCode
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Do you remember when you joined X? I do! #MyXAnniversary 5years brew
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 51: Learned about Access Modifiers in Python! Public: Directly accessible ( https://t.co/w7FOBNFbOj) Private: Prefixed with __ (Access via self._ClassName__attr) Protected: Prefixed with _ (Accessible with caution) Modifiers control data access! ๐Ÿš€ #Python #100DaysOfCode #OOP
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 50 of #100DaysOfCode ๐Ÿš€ Built a simple Number Guessing Game in Python! ๐ŸŽฒ Guess the secret number between 1 and 1000! Can you crack it? ๐Ÿ”ฅ
0
0
3
@VASU_SHEDALA
Vasu Shedala
1 year
Day 49: Took my first dive into getters and setters in Python! ๐Ÿ› ๏ธ They help control access to class attributes, but I'm still wrapping my head around it. More clarity coming soon! ๐Ÿš€ #100DaysOfCode #Python #OOP #CodingChallenge
0
0
2
@VASU_SHEDALA
Vasu Shedala
1 year
Day 48: Explored Python decorators today! ๐Ÿ”„ They wrap functions, modifying or enhancing them seamlessly. With just @decorator_name, I can customize behavior like magic! โœจ๐Ÿง™โ€โ™‚๏ธ Small steps, big learning. #Python #100DaysOfCode #Decorators #CodeNewbie
0
0
1
@VASU_SHEDALA
Vasu Shedala
1 year
Day 47: Despite exam prep, I managed to keep coding alive! Built a quick Python quiz app to stay sharp and reinforce my basics. ๐Ÿ“๐Ÿ’ป Small wins matter! โœจ #Python #100DaysOfCode #LearningEveryDay #CodeNewbies
0
0
1