Python jika tidak dijelaskan
#A demo of Python 'not' operator
x = 10
if not x > 10:
print("not retured True")
else:
print("not retured False")
rudythealchemist