I'm not sure if this site is for dumb troubleshooting questions, but I figure this will take someone 2 seconds. My Code:
#!/usr/bin/env python
def Runaaall(aaa):
  Objects9(1.0, 2.0)
def Objects9(aaa1, aaa2):
  If aaa2 != 0: print aaa1 / aaa2
The error I receive:
$ python test2.py 
  File "test2.py", line 7
    If aaa2 != 0: print aaa1 / aaa2
          ^
SyntaxError: invalid syntax
I'm at a loss to why this error is happening.
Thanks