Posts by Cleilton Timoteo • 6 points
2 posts
-
-5
votes5
answers427
viewsA: How to run faster a code that calculates the number of factorial digits of a number?
Send the question if that code doesn’t help you. num = int(input('Numero: ')) for i in range(1, num): num = i * num #Mostrando o fatorial do numero digitado print(num) #Essa varivel converte o valor…
-
0
votes3
answers101
viewsA: Rules in python list creation
I just didn’t understand this question: "3.You can’t repeat all the numbers". But test the code to see if it is the result you want. from random import randint import numpy as np import statistics…