Advertisement
The_KGB

python module 1

Apr 29th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #Basic Functions
  2.  
  3. a = 6
  4. b = 6
  5. c = 0
  6. d = 0
  7.  
  8. def main():
  9.     c = input("Please enter a number for c: ")
  10.     d = input("Please enter a number for d: ")
  11.     printNum(a,b,c,d)
  12.  
  13. def printNum(a,b,c,d):
  14.     print (a + b) / c + d
  15.    
  16. #Call main
  17. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement