Commit fddb5f05 by Patryk Czarnik

Pierwsze programy pisane w PyCharm

parent 6951d3f8
print('Hejka, jestem kolejnym heloł worldem pisanym disiaj')
# skrót do uruchamiania bieżącego programu: Ctrl+Shift+F10
imie = input('Jak masz na imię? ')
wiek = int(input('Ile masz lat? '))
# To jest komentarz
if wiek < 18:
print('niepełnoletni')
elif wiek < 65:
print('dorosły')
else:
print('emeryt')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment