Skip to content

Commit

Permalink
Create ex_AP_21
Browse files Browse the repository at this point in the history
  • Loading branch information
Trochim86 authored Oct 6, 2019
1 parent 5608ea3 commit 1375f08
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ex_AP_21
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
dday = {'Alicja': '1 kwietnia', 'Bob': '3 pazdziernik', 'Karol': '12 czerwiec'}

while True:
print('Podaj imie: (pozostwa puste by zakoniczyc program)')
name = input() # otwarta funkcja
if name =='': # dwykropek oraz dwa znaki rownosci
break # przerywa program

if name in dday:
print(dday[name] + 'to dzien urodzin o imieniu' + name + '.')

else:
print('Ne ma takiej osoby w bazie o imieniu ' + name + '.')

print('Kiedy przypadaja jej urodziny?')
bday = input()
dday[name] = bday
print('Baza została zaktualizowana')
print("Baza ma teraz jednostek" + str(len(dday)))

0 comments on commit 1375f08

Please sign in to comment.