๐——๐—ฎ๐˜ƒ๐—ฒ

165 posts

๐——๐—ฎ๐˜ƒ๐—ฒ banner
๐——๐—ฎ๐˜ƒ๐—ฒ

๐——๐—ฎ๐˜ƒ๐—ฒ

@Daev_999

๐—ฆ๐—ฎ๐˜ƒ๐—ฒ๐—ฑ ๐—ฏ๐˜† ๐—–๐—ต๐—ฟ๐—ถ๐˜€โœž ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜€๐˜ | ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป ๐—ฑ๐—ฒ๐˜ƒ ๐Ÿ–ฅ | ๐‚๐ข๐ฏ๐ข๐ฅ ๐„๐ง๐  ๐—œ๐—ก๐—ฆ๐—ฃ๐—œ๐—ฅ๐—˜๐—— ๐—•๐—ฌ ๐—ง๐—›๐—˜ ๐—™๐—˜๐—”๐—ฅ ๐—ข๐—™ ๐—•๐—˜๐—œ๐—ก๐—š ๐—”๐—ฉ๐—˜๐—ฅ๐—”๐—š๐—˜

On a Keyboard Katฤฑlฤฑm Eylรผl 2019
169 Takip Edilen24 Takipรงiler
Annie๐Ÿฆ‹
Annie๐Ÿฆ‹@DabereNnamaniยท
If youโ€™re looking for where to find internships or volunteering Jobs as a Data Analyst, this video is for you.
English
262
70
435
16.5K
Marvie
Marvie@marvie_ultimateยท
@Xcellent70 When will you win a treble, even if it's once in your life time?
English
21
0
69
25.5K
Xcellent
Xcellent@Xcellent70ยท
Since the introduction of VAR every top team has gotten to a European final except one๐Ÿ˜ญ
Xcellent tweet media
English
220
1.4K
27.3K
1.6M
Madrid Xtra
Madrid Xtra@MadridXtraยท
๐Ÿšจ Real Madrid is the most-followed football club in the world on Instagram.
Madrid Xtra tweet media
English
63
367
6.7K
98.4K
๐——๐—ฎ๐˜ƒ๐—ฒ
@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
0
0
0
12
Python Programming
Python Programming@PythonPrยท
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
Python Programming tweet media
English
25
10
69
7.8K
๐——๐—ฎ๐˜ƒ๐—ฒ
@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
0
0
0
38
Python Programming
Python Programming@PythonPrยท
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
Python Programming tweet media
English
31
14
122
13.3K
Emmanuel AA
Emmanuel AA@aladeokomoemma1ยท
@MadridXtra With Penalties???๐Ÿคฃ๐Ÿคฃ๐Ÿคฃ๐Ÿคฃ Iโ€™m sure Benefica is aggravated by this commentโ€ฆ
English
6
0
26
3.1K
Madrid Xtra
Madrid Xtra@MadridXtraยท
๐Ÿšจ๐Ÿ—ฃ๏ธ Fede Valverde: โ€œWe want [to win] La Liga and the Champions League.โ€
Madrid Xtra tweet media
English
103
298
5.8K
120.1K
Python Programming
Python Programming@PythonPrยท
Python Question / Quiz; What is the output of the following Python code, and why? Comment your answers below!
Python Programming tweet media
English
58
10
120
18.1K
๐——๐—ฎ๐˜ƒ๐—ฒ
@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
0
0
0
275
Python Coding
Python Coding@clcodingยท
What will be the output of the following Python code? arr = [1, 2, 3] for i in arr: i = i * 2 print(arr)
English
15
6
68
24.2K
Chisom๐ŸŒŸ
Chisom๐ŸŒŸ@Only_Chisomยท
@Daev_999 Exactly ๐Ÿ˜‚. That's the spirit. Welldone dear๐Ÿ‘๐Ÿ‘
English
1
0
1
28
Chisom๐ŸŒŸ
Chisom๐ŸŒŸ@Only_Chisomยท
Day 12 Sometimes, I feel lazy to do anything. So I built a small Python script that sends me motivational notifications Used: plyer : for system notification Random : rotate messages notification.notify() : trigger the pop-up Windows task scheduler: to make it automatic
Chisom๐ŸŒŸ tweet mediaChisom๐ŸŒŸ tweet media
English
3
0
4
126
๐——๐—ฎ๐˜ƒ๐—ฒ
๐Ÿ’ก 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
๐——๐—ฎ๐˜ƒ๐—ฒ tweet media
English
0
0
1
24