Advertisement
Andrey_06

Untitled

Feb 8th, 2025
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. from math import sqrt
  2.  
  3. def some_func(first_num, second_num):
  4.     result = (first_num * first_num) + (second_num * second_num)
  5.     return sqrt(result)
  6.  
  7. print(some_func(3, 4))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement