Post

Python Developer
Python Developer@Python_Dv·
Comment The Answer ❓📚🤔
Python Developer tweet media
English
43
8
157
23.4K
Sergei Kotov
Sergei Kotov@kotov_dev·
@Python_Dv Answer: B) No Step by step: › True == False evaluates to False › if False: skips the first block › else: executes, printing "No" For beginners: This is perfectly valid Python (no syntax error), but logically impossible. It's like asking "is 1 equal to 2?" = always False.
English
0
0
13
2.8K
Earnest Codes
Earnest Codes@Earnesto037·
@Python_Dv Answer: (B) No This is a conceptual problem that tests understanding of basic Python conditional statements and Boolean values. The condition if True == False: evaluates whether the boolean value True is equal to the boolean value False. This comparison is false, as True
English
1
0
11
609
The root of infinity
The root of infinity@parth_hirpara05·
@Python_Dv Ans---> B) No True == False evaluates to False So the if block is skipped The else block runs → prints "No" Output: No
English
0
0
3
312
Mel Malone
Mel Malone@mmalone25·
⚔️ 𝓜𝓮𝓵 𝓜𝓪𝓵𝓸𝓷𝓮 𝓟𝓻𝓲𝓶𝓮 ⚔️ Truth • Clarity • Forward Motion Viking Math Mode 💡🧠 Guess the output — logic check Code shown: if True == False: print("Yes") else: print("No") ⚔️ Evaluation •True == False → ❌ False •if condition fails •else branch executes 🎯 OUTPUT \boxed{\text{"No"}} ✅ Correct choice: B) No Clean boolean logic. No trick. No ambiguity. — 𝓜𝓮𝓵 𝓜𝓪𝓵𝓸𝓷𝓮
English
0
0
3
2.4K
Jenny
Jenny@JennyTheDev·
@Python_Dv B) No True == False evaluates to False, so it hits the else branch. The real question is: who writes if True == False in production and still has a job? 😂
English
0
0
3
1.2K
Kamal Gurjar
Kamal Gurjar@KamalGurjar8·
@Python_Dv Output B) No ✅ Because True == False evaluates to False, so the else block runs and prints "No".
English
0
0
2
1.1K
Shrinivas Nadager
Shrinivas Nadager@ShrinivasN17892·
The answer is B) No Here's why: • True == False evaluates to False • Since condition is False, the else block executes • Output: "No" Key Insight: → In Python, True and False are boolean literals → Comparing them with == checks equality → True != False, so True == False is always False Great question for understanding conditional flow and boolean evaluation! 💡
English
0
0
2
406
Python Tech
Python Tech@PythonTech43716·
@Python_Dv B) No is right answer Here simple use of if and else block True==False this is not true so answer is no.
English
0
0
1
258
GAMBIT
GAMBIT@gambflash·
@Python_Dv Ans: B. == asks if True =False, since it's not, it skips the print"Yes" & prints "No"
English
0
0
1
257
Nanditha Mahesh
Nanditha Mahesh@MaheshNand76077·
@Python_Dv Nearlearn is a Bangalore-based ed-tech company that offers training in emerging technologies like Python Artificial Intelligence, Machine Learning, Deep Learning, Data Science, Python, Blockchain, and more. nearlearn.com/python-classro…
English
0
0
0
37
claveprep
claveprep@claveprep·
@Python_Dv B) No! 🎯 Logic and truthiness puzzle - key for coding interviews. Mastering Python concepts helps land senior roles. ClavePrep interview prep builds these skills! 🚀 #Python
English
0
0
0
17
Ranjan
Ranjan@Ranjanrgdev·
@Python_Dv No Because true is not false
English
0
0
0
842
takeminakata38
takeminakata38@TA_moriya_160·
@Python_Dv A or B or Error because variable "True" and "False" are not clear.
English
0
0
0
38
Paylaş