In this video I’ll show you how to return and receive multiple values. We’ll also calculate primes,
calculate areas for different shapes and talk about main().
To return multiple values just separate values returned with commas.
CODE
def mult_divide(num1, num2):
return (num1 * num2), (num1 / num2)
mult, divide = mult_divide(5, 4)
print("5 * 4 =", mult)
print("5 / 4 =", divide)
Return a List of Primes
A prime can only be divided by 1 and itself. 5 is prime because 1 and 5 are its only positive
factors. 6 is a composite because it is divisible by 1, 2, 3 and 6.
We'll receive a request for primes up to the input value. We’ll then use a for loop and check if
modulus == 0 for every value up to the number to check. If modulus == 0 that means the
number isn't prime
Nesta página do site você pode assistir ao vídeo on-line Functions part 2 in python by CodingXpertz duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Coding Xpertz 01 Janeiro 1970, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 26 vezes e gostou 2 espectadores. Boa visualização!