Saket Kumar

95 posts

Saket Kumar

Saket Kumar

@SaketKumarX

Katılım Haziran 2023
25 Takip Edilen0 Takipçiler
Saket Kumar
Saket Kumar@SaketKumarX·
Point to be noted- 1. Fear of height 2. Fear of loud noise Are the only two inherited fear. Others are learned through life experiences. Fear of failure ❌ Fear of being judged ❌ youtu.be/3L4lxusff1c?si…
YouTube video
YouTube
English
0
0
0
2
Charlie Hills
Charlie Hills@charliejhills·
This is the one prompt that stops AI from gaslighting you. Force AI to tell the truth. No sugarcoating. No hallucinations. No fake confidence. Brutally honest answers. Every time. I packaged my reality filter prompt into a plug-and-play guide To get it, just: → Comment “REALITY” → Follow me (so I can DM)
English
4.7K
1.1K
8.1K
329K
Saket Kumar
Saket Kumar@SaketKumarX·
Valid point @raghav_chadha ji.. Yes, right to recall honi chahiye. This will - --> Build people's trust in the political system. -->Increase people's participation in governance. --> Reduce political criminalisation. --> Reduce polarisation in politics. youtube.com/shorts/5KM3UET…
YouTube video
YouTube
English
0
0
0
4
Saket Kumar retweetledi
Piyush Bodaa
Piyush Bodaa@piyushbodaa·
Can the police stop you from making a video ? If any police officer or government official is at a public scene you can make a video, just don't interfere in his work. Article 19 of the constitution gives you the full right to get information and speak. Therefore if any government official on duty stops you from making videos, scares you, threatens you, then make his video and complain to National Human Rights 14433
English
40
2.8K
7.1K
155.3K
Saket Kumar retweetledi
The Wolf Man
The Wolf Man@iTheWolfman·
Awesome🥰🥰
English
208
2.6K
14.5K
485K
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output : '2222' ✅ a = '2' --> it's a String (not integer). b = 3 --> it's an integer print(a * b + a) a * b --> '2' * 3 = '222' (Multiplied string '2' three times) a * b + a --> '2222' (String concatenation) ✅
English
0
1
9
1.6K
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
32
10
163
29K
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output : B) 7 ✅ "Python" + "3" --> "Python3" (by string concatenation) print(len("Python3") --> 7 ✅
Deutsch
0
0
0
36
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
39
7
121
13.9K
Saket Kumar retweetledi
Elon Musk
Elon Musk@elonmusk·
Powerful words
English
13.5K
61.4K
297.5K
12.7M
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output : B [[5][5]] ✅ x = [[0]] * 2 --> [[0] [0]] # two references to the SAME inner list x[0][0] = 5 --> [[5][5]] # modifies that single inner list print(x) --> [[5][5]] ✅
English
0
0
0
128
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
16
7
80
10K
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv A) True ✅ 'is' checks object identity, not value equality. a = "Hello" b = "hel' + 'lo' --> String concatenation Both a and b end up referencing the same string object. So a is b evaluates to True ✅
English
0
1
6
1.2K
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
31
8
104
17.5K
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
58
17
233
36.9K
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output : 10✅ total = 0 for i in range(1, 5): --> i = 1, 2, 3, 4 total += 1 1st loop --> 0 + 1 = 1 2nd loop --> 1 + 2 = 3 3rd loop --> 3 + 3 = 6 4th loop --> 6 + 4 = 10 ✅
English
1
1
6
745
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
32
6
109
19.4K
Saket Kumar
Saket Kumar@SaketKumarX·
@PythonPr Output : 1010 ✅ a = "10" --> is a string not integer b = 2 --> is an integer print(a * b) --> printing string "10" two times --> 1010
English
0
0
3
1.2K
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
33
9
224
40.3K
Saket Kumar
Saket Kumar@SaketKumarX·
@Python_Dv Output: B) 3, 4 ✅ x = [10, 20, 30] len(x) = 3 y = x.copy() --> copying x in y. y.append(40) --> add 40 in the list. y = [10, 20, 30, 40] len(y) --> 4
English
0
0
0
92
Python Developer
Python Developer@Python_Dv·
Comment below the output! 😃👇
Python Developer tweet media
English
33
8
151
18.2K