Advertisement
teslariu

mod2

Jan 22nd, 2022
1,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. def suma(a,b):
  5.     return a + b
  6.    
  7. def producto(a,b):
  8.     return a * b
  9.  
  10. def potencia(a,b):
  11.     return a ** b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement