deep2
Python IDE
1
# Welcome to Python IDE!
# Try writing some code below
print("Hello, World!")
name = input("What's your name? ")
print(f"Nice to meet you, {name}!")
# Calculate the area of a circle
radius = 5
area = 3.14159 * radius ** 2
print(f"A circle with radius {radius} has area {area:.2f}")
Output
Console
Click "Run" to execute your code...
Comments
Post a Comment