Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def exponenciacion(b = 2, e = 2):
- return b ** e
- print(exponenciacion(e=3))
- print(exponenciacion(b=5))
- print(exponenciacion(3, 3))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement