Computer hours

Report a typo

Write a program that asks a user how long, on average, they spend on a computer per day. If it's less than 2 hours, the program should output "That's rare nowadays!". If it is 2 hours or more, but less than 4 hours per day it should output"This seems reasonable". In any other case, output "Don't forget to take breaks!"

Sample Input 1:

6

Sample Output 1:

Don't forget to take breaks!
Write a program in Python 3
# Make sure your output matches the assignment *exactly*
___

Create a free account to access the full topic