ShriRam Changed status to publish August 17, 2023
a=2
b=3
if a is b:
print(“Yes”);
else:
print(“No”);
if type(a) is type(b):
print(“Yes”);
else:
print(“No”);
if a is not b:
print(“Yes”);
else:
print(“No”);
if type(a) is not type(b):
print(“Yes”);
else:
print(“No”);
ShriRam Changed status to publish August 17, 2023