Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def search_card(name):
- global base
- for i, val in enumerate(base):
- if val == name:
- print('Ваша карта с номером {} найдена'.format(i + 1))
- return
- print('Ваша карта не найдена')
- def hello(name):
- print('Здравствуйте, {}! Вашу карту ищут...'.format(name))
Advertisement
Add Comment
Please, Sign In to add comment