Question: Use a list: Python A triangular number is a number that is the sum of the integers from 1 to some integer n. Thus 1
Use a list: Python
A triangular number is a number that is the sum of the integers from 1 to some integer n. Thus 1 is a triangular number because it's the sum of the integers from 1 to 1; 6 is a triangular number because it's 1+2+3=6.
Given the non-negative integers m and n (with m < n), create a list of the triangular numbers between (and including) m and n. Thus if m is 3 and n is 20, the list would be: [3, 6, 10, 15]. Associate the list with the variable triangulars.
There is no need to write a function here or print anything. Codelab just wants the part of the code that performs this
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
