I'm trying to create a function that will prompt the user to give a radius for each circle that they have designated as having, however, I can't seem to figure out how to display it without running into the TypeError: input expected at most 1 arguments, got 2
def GetRadius():
    NUM_CIRCLES = eval(input("Enter the number of circles: "))
    for i in range(NUM_CIRCLES):
        Radius = eval(input("Enter the radius of circle #", i + 1))
GetRadius()
 
     
     
     
     
    