๐๐ฎ๐๐ฒ
165 posts

๐๐ฎ๐๐ฒ
@Daev_999
๐ฆ๐ฎ๐๐ฒ๐ฑ ๐ฏ๐ ๐๐ต๐ฟ๐ถ๐โ ๐๐ป๐ฎ๐น๐๐๐ | ๐ฃ๐๐๐ต๐ผ๐ป ๐ฑ๐ฒ๐ ๐ฅ | ๐๐ข๐ฏ๐ข๐ฅ ๐๐ง๐ ๐๐ก๐ฆ๐ฃ๐๐ฅ๐๐ ๐๐ฌ ๐ง๐๐ ๐๐๐๐ฅ ๐ข๐ ๐๐๐๐ก๐ ๐๐ฉ๐๐ฅ๐๐๐
On a Keyboard Beigetreten Eylรผl 2019
169 Folgt24 Follower

@DavidPattt Omo na attitude adjustment (AA) be that oooo ๐. As John Cena retire be like he wan replace am
English

@Xcellent70 When will you win a treble, even if it's once in your life time?
English

@0323Musawenkosi @Vera_RMCF @MadridXtra Youโre just pained. Wetin bring you come our page? Sad bro๐
English

@Vera_RMCF @MadridXtra Best club where? Shut your bitch ass up
English

@PythonPr Answer: C) [1, 2, 3]
b = a doesnโt copy the list; it points to the same list in memory.
b.append(3) modifies the list in place.
So a also changes.
English

@PythonPr Answer: B. [1, 2, 3, 4, 5]
Why?
b = a doesnโt create a new list.
It makes b point to the same list in memory as a.
When you do:
b += [4, 5]
+= modifies the list in place.
So the original list changes, and since a and b reference the same object, a reflects the update too.
English

@aladeokomoemma1 @MadridXtra At least you watched good football rather than the trash you guys played yesterday (4-0)
English

@MadridXtra With Penalties???๐คฃ๐คฃ๐คฃ๐คฃ
Iโm sure Benefica is aggravated by this commentโฆ
English

Wrapping up my OOP notes ๐. Putting it all together with QuizBrain as an example. These projects show how classes, methods, and attributes interact in real code.
Check out the full code on GitHub ๐๐พ
quiz_brain: github.com/daev999/quiz_gโฆ
#PythonProjects #CodingTips #LearnPython



English

Continuing with Python OOP: exploring attributes & methods, self, and object behaviors.
These concepts are what make Python powerful for building projects like quizzes and games!
#PythonProgramming #OOP #LearnPython




English

Starting my Python OOP journey ๐ป; diving into classes, attributes, and the init() method.
Swipe through to see examples and key takeaways from my notes!
#Python #OOP #CodingJourney




English

Hey X! ๐
Looking to connect with all the builders:
Open-source lovers โข Web devs โข DevOps wizards โข Startup grinders โข AI tinkerers
Letโs connect & build cool thingst together!
๐ GitHub: github.com/hebypaul
๐ LinkedIn: linkedin.com/in/hebytpaul/
#letsconnect #webdev #opensource #devops #100DaysOfCode #buildinpublic #startup #AI #reactjs #javascript #python
English

@HebyPaul Just followed you on Git, follow back let's connect
English

@clcoding for i in list gives you a copy of the element (for immutable types like integers, itโs just a copy). Changing "i" does not affect the original list. If you want to actually modify the list:
arr = [1, 2, 3]
for index in range(len(arr)):
arr[index] = arr[index] * 2
print(arr)
English

@Daev_999 Exactly ๐. That's the spirit.
Welldone dear๐๐
English

๐ก Key takeaway:
โฆ A for loop iterates over items that already exist
โฆ Appending objects happens before the loop, not inside it (unless youโre generating objects dynamically)
โฆ Keep objects in the list, not just strings, if you want to use methods/attributes later
#python

English















