Skip to content

Sleep Assessment

Andrew Burke edited this page Apr 3, 2024 · 6 revisions
def sleep_assessment(hours):
	if hours < 8:
		print("Oof, go back to bed!")
	elif hours >= 8 and hours <= 10:
		print("You got a good night's rest!")
	else:
		print("You're a sleep prodigy!")
Clone this wiki locally