Question: Notice: Only use loop or while!!! Do not use recursion!!! Part b) Write a Python function build special_list that consumes a natural number (n) and
Notice: Only use loop or while!!! Do not use recursion!!!

Part b) Write a Python function build special_list that consumes a natural number (n) and returns a list following the pattern [[1], [1,2], , [1,2,3,...,n]]. For example: build special list (6) 1], [1, 2], [1, 2, 3], [1, 2, 3, buildspecialist (0) => [] build_special_list (1) [[1]]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
