lab1.py 296 B

1234567891011
  1. #!/usr/bin/env python
  2. # Welcome to the test of pyc! Thanks for participating.
  3. # This weeks assignment is to create a function called 'test' that returns 1
  4. # Your code will be run in a sandbox, so print statements are not allowed.
  5. def test():
  6. return 0
  7. if __name__ == '__main__':
  8. print test()