""" Authors: Purpose: CS111 Lab Hi/Lo guessing game while loop practice Consulted: Date: Filename: hiLo.py """ import random # ------------------------------------ # Provided code (do not change) # ------------------------------------ def getUsersGuess(): """Gets and returns user's integer guess""" num = input('Take a guess: ') num = int(num) return num # --------------------------------------------------- # hiLo template -- fill in to complete this function # --------------------------------------------------- def hiLo(): """ Plays an interactive hiLo game where the user tries to guess a secret number """ # Greet user and explain rules print( 'Try to guess the number I am thinking of between 1 and 50.' + ' You have 5 chances.' )