Python Solution - Pronic numbers Excel Challenge

preview_player
Показать описание
This is a solution to ExcelBi's challenge 276- filtering out pronic numbers where a pronic number is one that is the product of 2 consecutive integers. This is a Python in Excel Solution to the problem

Workbook link:

#PronicNumbers #Excel #functions
Рекомендации по теме
Комментарии
Автор

This is one of my favorite of your recent Excel Challenges, because it involves thinking about both math and code.

charlesmurtaugh
Автор

Nice video it would be great to make more videos on Python in Excel. Thank you for ur hard work 👏

nadermounir
Автор

Yours is very simple than the one i used😂😂

def filters(x):
return
number_from_challenge = xl("A2:A10")[0].values
desired_output = list(filter(filters, number_from_challenge))
desired_output

excelpro_