Python'da Veri Tipleri
Jason Myers
Instructor
TrueFalsePython ile diğer diller arasında geçiş yaparken büyük/küçük harfe dikkat ediniz.
out_of_cookies = True
if out_of_cookies:
print("Run to the store NOW!")
Run to the store NOW!
apples=2
if apples:
print("We have apples.")
"We have apples."
apples=0
if apple:
print('We have apples.')
1"Cookies"["Cake", "Pie"]{"key": "value"}0""[]{}Nonecookie_qty == 3
== eşittir!= eşit değildir< küçüktür<= küçük eşittir> büyüktür>= büyük eşittirx = 0.1 + 1.1
x == 1.2
False
print(x)
1.2000000000000002
Float eşitlik karşılaştırmalarında dikkatli olun!
Python'da Veri Tipleri