Advertisement
yloplopy

Python 2

Oct 2nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. from LetterHelperFunctions import *
  2.  
  3. print "I'm in the main"
  4.  
  5. print "call f(x) with "
  6. x = 10
  7. print x , "being x. ", str(f(x))
  8. ----------------------------------------------
  9. for i in range(10):
  10. print i
  11.  
  12. print "I printed one to ten in the Helper File"
  13.  
  14. def f(x):
  15. return x*x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement