Question: must be done in python 1. (Display numbers in a pyramid pattern) Write a nested for loop that displays the following output: 1 24816 8

must be done in python
1. (Display numbers in a pyramid pattern) Write a nested for loop that displays the following output: 1 24816 8 42 1 1 2 4 8 16 32 16 8 421 1 2 4 8 16 32 64 32 16 8 421 1 2 4 8 16 32 64 128 64 32 16 8 42 1 2. (Compute e) You can approximate e using the following series: 1! 2!3! 4! Write a program that displays the e value for i = 10000, 20000, . . ., and 100000. (Hint: Since i! = 1 (1-1) 2 1, then-is Initialize e and i ew item to e. The new item is tem to be 1 and keep adding a n the previous item divided by i for i = 2, 3, 4, . . . .)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
