Untitled
unknown
python
2 years ago
205 B
5
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