𝗗𝗮𝘃𝗲
165 posts

𝗗𝗮𝘃𝗲
@Daev_999
𝗦𝗮𝘃𝗲𝗱 𝗯𝘆 𝗖𝗵𝗿𝗶𝘀✞ 𝗔𝗻𝗮𝗹𝘆𝘀𝘁 | 𝗣𝘆𝘁𝗵𝗼𝗻 𝗱𝗲𝘃 🖥 | 𝐂𝐢𝐯𝐢𝐥 𝐄𝐧𝐠 𝗜𝗡𝗦𝗣𝗜𝗥𝗘𝗗 𝗕𝗬 𝗧𝗛𝗘 𝗙𝗘𝗔𝗥 𝗢𝗙 𝗕𝗘𝗜𝗡𝗚 𝗔𝗩𝗘𝗥𝗔𝗚𝗘
On a Keyboard شامل ہوئے Eylül 2019
169 فالونگ24 فالوورز

@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

@Vera_RMCF @MadridXtra Best club where? Shut your bitch ass up
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

@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

















