''' Module randy.py ''' import random def p( n, b, s ) : pass if ( __name__ == '__main__' ) : x = p( 12, 2, 'randy' ) print( 'p( 12, 2, \'randy\' ):', x ) x = p( 5, 10, 15 ) print( 'p( 5, 10, 15 ):', x ) x = p( 3, 8, 38 ) print( 'p( 3, 8, 38 ):', x ) x = p( 0, 8, 11 ) print( 'p( 0, 8, 11 ):', x )