Update arc_length.py

Added the requested changes
This commit is contained in:
Guduly 2023-08-17 06:50:52 -05:00 committed by GitHub
parent 339330b8d7
commit 668ef1f78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,4 +12,8 @@ def arc_length(angle: int, radius: int) -> float:
if __name__ == "__main__":
print(arc_length(90, 10)) # --> 15.7079632679
print(arc_length(90, 10))
"""
>>> arc_length(90, 10)
15.7079632679
"""