Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- name = input('Введите свое имя: ')
- time = int(input('Введите нынешнее время: '))
- if time > 12:
- hello = f'Привет {name}! Как прошел твой день? Продолжение текста...'
- else:
- hello = f'Привет {name}! Удачи, день только начался! Продолжение текста...'
- print(hello)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement