#Python tip: Hard-coded constants should use the optional underscore as a thousands separator:
>>> x = 1_234_567
Also, you can output numbers in that format:
>>> f'{x:_d}'
'1_234_567'
Or with commas:
>>> f'{x:,d}'
'1,234,567'
1/
Today, we found a small bug in IDLE during Intro #Python class, and I took that opportunity to show how to file bug report.
Tomorrow, I expect the learners to be delighted when they see the bug has already been fixed 🤩
https://t.co/3m9DpkhWBx
"Python is designed to deliver an experience that is simple and easy to use. This is only possible through a combination of advanced technologies and sophisticated engineering."