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.