1# uPy behaviour only: builtin modules are read-only 2import usys 3try: 4 usys.x = 1 5except AttributeError: 6 print("AttributeError") 7