Answers for "find low and high in string"

0

find low and high in string

def high_and_low(numbers): #z.
    nn = [int(s) for s in numbers.split(" ")]
    return "%i %i" % (max(nn),min(nn))
Posted by: Guest on March-14-2022

Code answers related to "find low and high in string"

Python Answers by Framework

Browse Popular Code Answers by Language