import math # liczenie pola koła promień = float(input("Wpisz promień koła -> ")) pole = math.pi*promień*promień #lub pole=math.pi*pow(promień,2) lub pole=math.pi*promień**2 print("Pole koła o promieniu: ",promień," wynosi = ", pole)