Teil 6 "Objekte ist neu
Repository aufgeräumt.
This commit is contained in:
14
teil3/kommentare.py
Normal file
14
teil3/kommentare.py
Normal file
@@ -0,0 +1,14 @@
|
||||
#math Package importieren
|
||||
import math
|
||||
#PI = 3.1415
|
||||
|
||||
# berechnet den Flächeninhalt eines Kreises
|
||||
# mit dem Radius r
|
||||
# Parameter: r - Radius des Kreises
|
||||
def berechne_flaecheninhalt(r):
|
||||
|
||||
a = math.pi * r**2
|
||||
return a
|
||||
|
||||
flaeche = berechne_flaecheninhalt(10)
|
||||
print(f"Der Flächeninhalt beträgt: {flaeche}")
|
Reference in New Issue
Block a user