https://github.com/Albatros46/PythonLesson2/blob/main/D07-Boolean_and_or.py
a=True
b=False
print(type(a))
print(type(b))
x=2
y=True
print(x>y) # 2 fadesi 0 dan buyuk oldugu icin true deger donecektir.
age =33
bool1=age<20
print(bool1)
"""
Karsilastirma ifadeleri
< ->
<= -> less than or equal
> -> strictly greater than
>= -> greater than equal
== -> equal
!= -> not equal
is -> object identy
is not -> negated object identity
"""
ogra=['Ahmet','Mehmet','Akif','Jhon']
ogrb=['Ahmet','Mehmet','Akif','Jhon']
print(ogra == ogrb) #true
print(ogra is ogrb ) #false - hafizada bulunan farkli yerleri teskil ettikleri icin false donecektir
print(ogra is not ogrb)
print(32 > 24 and 15 >10)
print(False or True)
print(False or False)
print(not False)