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