Owl
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 1
-
Edited Problem with stepping in PyCharm's debugger
Hi everyone :) My question is simple. I have this codeclass PiggyBank: def __init__(self, coins): self.coins = coins def __repr__(self): return f'PiggyBank({self.coins})' ...