Untitled
Anonymous
python
05/28/2024 4:51 AM
276 B
11
Indexable
if __name__ == '__main__':
temp = int(input("Podaj temperaturę: "))
if temp < 17:
print('zimno')
elif temp <= 26:
print('ciepło')
else:
print('gorąco')
Editor is loading...
Leave a Comment