8 lines
76 B
Python
8 lines
76 B
Python
PI = 3.1415
|
|
r=10
|
|
|
|
a = PI * r*r
|
|
|
|
print(f'Der Flächeninhalt beträgt: {a}')
|
|
|