Search found 1 match
- Fri Apr 22, 2011 8:43 pm
- Forum: Challenges Solved
- Topic: The Powers That Be
- Replies: 27
- Views: 6992
You don't need to import anything fancy to work with large integers - just write the expression as normal. Python silently switches types to a flexible type when the numbers get too large for a normal integer. n = (17 ** 39) ** 11 print str(n)[::33] python FTW my code: #!/bin/python a = (17 ** 39) ...