0 of 1 Questions completed
Questions:
You have already completed the practice exercise before. Hence you can not start it again.
Practice Exercise is loading…
You must sign in or sign up to start the practice exercise.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Question: Create a program that asks the user to input the total number of followers they have and the total number of likes they received on their most recent post.
Then, calculate and print their follower engagement (%) on their most recent post like so:
Fill in the program below!
followers = (input(“How many followers do you have?”))
likes = (input(“How many likes did you receive on your most recent post?”))
engagement_percent = (likes / followers) * 100
rounded_engagement_percent = ( , )
print( + “% of your followers liked your most recent post with ” + + ” likes.”)