Chris

Avatar
  • Total activity 2
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 1
  • Chris created a post,

    Display class like a tuple in the variables window

    I ran the following code in the python console (right click → Run File in Python Console)class Test: def __init__(self, *args): self.values = args def __iter__(self): return iter(self.value...