QUESTION IMAGE
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)
Step1: Read username input
$user\_name = input()$
Step2: Read course name input
$course\_name = input()$
Step3: Assign action variable
$action = "likes"$
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
user_name = input()
course_name = input()
action = "likes"
print(user_name, action, course_name)