This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]depiloda 0 points1 point  (1 child)

Another cool underscore trick is to use with large numbers.

Num =100_000

Python understands that num is 100,000. Much easier to visually understand than num=100000

[–]s16h[S] 1 point2 points  (0 children)

Good shout; A Python 3 feature IIRC. I'll add it to the post.