19 Reputation Points
Ranked #1K
- Strength to Increase Rep
- +2
- Strength to Decrease Rep
- -0
100% Quality Score
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #31.8K
~22.2K People Reached
Favorite Forums
Re: @vegaseat: Generally speaking, using mutable default arguments is considered a poor Python programming practice. | |
Re: @leegeorg07, you could make it built-in for the rest of the execution of your script by making it a part of the `__builtins__` module by adding these lines at the end: import __builtin__ # use "builtins" in Python 3 __builtin__.Print = Print Although this practice is often frowned-up. |