Форум сайта python.su
Всем здравствуйте. Сейчас прохожу задание на бесплатное обучение на курс Python. Дали творческое задание - коротко представить себя, почему именно вас нужно взять на обучение. Хочу его реализовать в виде функции:
def my_motivation_to_study(my_name): if my_name == student_your_school: print("I'll do my best to finish the course successfully") else: print("I'll try again, and again, and again...)
Офлайн
Nosferata
Что-то вроде этого.
print("I must become your student, becouse my current knowledge of Python isn't enoght to solve even simplest tasks.\nI need to learn Python.")
Офлайн
NosferataЧтобы сделать функцию, сначала нужно её вызвать, как будто она уже есть и уже сделана.
Хочу его реализовать в виде функции:
def become_a_student(educational_unit): pass
def become_a_student(educational_unit): result = True return result
def become_a_student(educational_unit): print("Hello, I want to become a student in", educational_unit) result = not educational_unit == 'unique' return result
>>> def become_a_student(educational_unit): ... print("Hello, I want to become a student in", educational_unit) ... result = not educational_unit == 'unique' ... return result ... >>> result = become_a_student('Школа такая-то') Hello, I want to become a student in Школа такая-то >>> result True >>>
Отредактировано py.user.next (Дек. 21, 2024 23:47:53)
Офлайн