1 2 3 4 5 6 7 8 9 10 11
""" categories: Core,Functions description: Assign instance variable to function cause: Unknown workaround: Unknown """ def f(): pass f.x = 0 print(f.x)