Advertisements
Advertisements
प्रश्न
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
The string ‘middle’ is larger than the string ‘first’ and smaller than the string ‘last’.
एक पंक्ति में उत्तर
Advertisements
उत्तर
(middle > first) and (middle < last)shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
