I\'m trying to write a code that lets me find the first few multiples of a number. This is one of my attempts:
def printMultiples(n, m): for m in (n,m): prin
For the first ten multiples of 5, say
>>> [5*n for n in range(1,10+1)] [5, 10, 15, 20, 25, 30, 35, 40, 45, 50]