The most basic and powerful data type in Python is the 'list'. We know how to store numbers or strings in a list, like [80, 90, 85]. So, what happens if we put 'another list' as an 'element' of a list ...
Write a program that finds all pairs of numbers that multiply to give n using numbers from 1 to n (inclusive). The program should show all possible combinations, including duplicate pairs in reverse ...