Complete the expression so that user_points is assigned with 0 if user_items is greater than 25 (second branch). Otherwise, user_points is assigned with 10 (first branch).
user_level = int(input()) # Program will be tested with values: 15, 20, 25, 30, 35.
if ''' Your code goes here ''':
user_points = 10
else:
user_points = 0
print(user_points)
What is the answer for Python please