Need help in below code | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

Need help in below code

def yell_this(words_to_yell): words_to_yell= input() yell_this() I need to call yell_this() function with words_to_yell as argument and input for words_to_yell must be from user https://code.sololearn.com/WOhdeXO3orZw/?ref=app https://code.sololearn.com/WzQAWol6Fk6j/?ref=app https://www.sololearn.com/discuss/2065432/?ref=app

12th Nov 2019, 2:25 PM
Divya MI
Divya MI - avatar
1 ответ
+ 1
def yell_this(words_to_yell): print(words_to_yell) yell_this(input())
12th Nov 2019, 2:32 PM
Asman-H
Asman-H - avatar