Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. import math
  2.  
  3. def doublesquare(x):
  4. if x < 1 or x > 100:
  5. print("you fucked up son")
  6. else:
  7. print( math.pow(x*2, 2))
  8.  
  9. doublesquare(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement