python-CSD-kursu/python-temel/true-false-else-if.py

17 lines
240 B
Python
Raw Normal View History

2023-05-20 07:17:59 +03:00
a = int(input("Bir değer giriniz:"))
if a:
print('Doğru')
else:
print('Yanlış')
b = []
if b:
print('Doğru')
else:
print('Yanlış')
s = input('Bir yazı giriniz:')
if s:
print('Doğru')
else:
print('Yanlış')