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
На этой странице сайта вы можете посмотреть видео онлайн Functions part 2 in python by CodingXpertz длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Coding Xpertz 01 Январь 1970, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 26 раз и оно понравилось 2 зрителям. Приятного просмотра!