🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

Python में कौन सा valid arithmetic operator नहीं है?

Which of the following is NOT a valid Python arithmetic operator?

A
+
B
//
C
%
D
&&
Explanation
  • 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 as and.

  • हिंदी (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) &&

Latest Updates