Python में कौन सा valid arithmetic operator नहीं है?
Which of the following is NOT a valid Python arithmetic operator?
-
English:
&&is not a valid arithmetic operator in Python. It is used in some other languages (like C, C++, Java) for logical AND.
In Python, logical AND is written asand. -
हिंदी (Hindi):
&&Python में एक वैध गणितीय (arithmetic) ऑपरेटर नहीं है। यह कुछ अन्य भाषाओं (जैसे C, C++, Java) में logical AND के लिए इस्तेमाल होता है।
Python में logical AND के लिएandलिखा जाता है।
✅ Valid Arithmetic Operators in Python:
-
+→ Addition (जोड़) -
-→ Subtraction (घटाव) -
*→ Multiplication (गुणा) -
/→ Division (विभाजन) -
//→ Floor Division (पूर्णांक विभाजन) -
%→ Modulus (शेषफल) -
**→ Exponentiation (घात)
Correct Answer: D) &&