Breaking long number literal into multiple lines

Viewed 182

Breaking long string literals into multiple lines is not problem, e. g.

long_string = ("This is a very very long string literal for writing it as one-line "
               "literal. More appropriate is using more lines so that the code" 
               "will be more readable.")

But what about long integer literals, e. g.

long_number = 12312323456782556897455666645555554787825401568014564565678978201245667185

Is there some similar possibility?

2 Answers
Related