''' Purpose: define some functions related to UVA ''' # This function takes in no parameters and returns a string result def championship(): ''' Return information about UVA NCAA championship ''' result = 'UVA wins 85:77 over Texas Tech' return result # This function takes in two parameters and returns the string of whether uva won or lost def did_uva_win( uva_score, opponent_score ) : ''' If uva_score is greater, return 'UVA won' Else return 'Uva lost' ''' if ( uva_score > opponent_score ): result = 'UVA won!' else: result = 'UVA lost!' return result def xxx( n ) : ''' Returns ??? ''' pass def xxx( m, n ) : ''' Returns ??? ''' pass