Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

jump to level 1 read strings user_name and course_name from input and a…

Question

jump to level 1
read strings user_name and course_name from input and assign variable action with \likes\.
click here for example
1
2 \\\ your code goes here \\\
3
4 print(user_name, action, course_name)

Explanation:

Step1: Read username input

$user\_name = input()$

Step2: Read course name input

$course\_name = input()$

Step3: Assign action variable

$action = "likes"$

Answer:

user_name = input()
course_name = input()
action = "likes"
print(user_name, action, course_name)