Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Beuys
/
errorType
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
errorType
/
8.py
Beuys
Upload 47 files
e16247a
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
136 Bytes
# a和b输入点的坐标
a=
eval
(
input
())
# x1,y1
b=
eval
(
input
())
# x2,y2
import
math
n=math.sqrt(a*a-b*b)
stext=
'%.2f'
%(n)
print
(stext)