Python Boolean
isMarried = True
print(type(isMarried))
if(not isMarried):
print("John is not Married")
else:
print("John is married")Last updated
isMarried = True
print(type(isMarried))
if(not isMarried):
print("John is not Married")
else:
print("John is married")Last updated