import math
def getResults(r):
return "Volume = {}\\Surface Area = {}".format(round((4/3)*math.pi*(r**3),1), round((4*math.pi)*(r**2),1))
print(getResults(3.5))
I hope this helps!
7.2m questions
9.5m answers