Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def funct_03():
  2. y = 2.3 * 3.5
  3. print(y)
  4. def funct_04(x, y):
  5. z = x * x + y* y
  6. return z
  7. funct_03()
  8. a,b = 2, 3
  9. print(funct_04(a, b))
  10. a, b = 3, 4
  11. print(funct_04(a, b))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement