Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
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
over 2 years ago
Raw
Download with hf CLI
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)