Home
О нас
Products
Services
Регистрация
Войти
Поиск
froli4f
@froli4f
August 2022
1
12
Report
Записать решение в языке программы Python
Под корнем a в квадрате + b в квадрате
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
BrightOne
# Python 3.X
from math import sqrt
a, b = map(float, map(input, ['a = ', 'b = ']))
print(sqrt(a ** 2 + b ** 2))
1 votes
Thanks 1
froli4f
Спасибо!
×
Report "Записать решение в языке программы Python Под корнем a в квадрате + b в квадрате..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
# Python 3.X
from math import sqrt
a, b = map(float, map(input, ['a = ', 'b = ']))
print(sqrt(a ** 2 + b ** 2))