Posts by Daniel Nishimori • 83 points
2 posts
-
3
votes2
answers102
viewsQ: My code is only returning half of what it should
I’m doing some simple exercises in Python and this code should return a list organized by the size of the fruit name, with the fruit with the shortest name first (in case, 'uva'). lista = ['maça',…
-
4
votes1
answer112
viewsQ: Why does Python have such big numbers?
What would be the largest number in python? Python shows the result of expressions like: >>> 8**150000 The result was 135465 digits! I wanted to know the language can do this.…