Question: In IDLE form Python Assignment Section 14.5 in your zyBook talks about ASCII Art. Your goal in this lab is to introduce yourself, and then

Assignment Section 14.5 in your zyBook talks about ASCII Art. Your goal in this lab is to introduce yourself, and then print your initials using ASCII Art. Here is a simple example: Hello! My name is Tracy Camp, and my initials are: ... *... We Goodbye! Assignment The following recurrence relation defines Fibonacci numbers Fn: Fo = 0 F1 = 1 Fn = Fn-1 + Fn-2 (for n >=2) Write a Python program that calculates and then prints the first 10 Fibonacci numbers. This assignment should be solved without recursion or loops (and do not worry if you do not know what recursion and loops are) For 102 students: we suggest you complete the CSCI 102 labs this week before this CSCI 101 lab. For students with prior programming experience: you are welcome to use recursion or loops to solve this lab. If you choose to do this, do it on your own. Please do not encourage new programming students in CSCI 101 to do the same. That would be intimidating! They will learn about loops and recursion, when the time is right. Example Execution PO = 0 Fl=1 P2 = 1 F3 = 2 F4 - 3 F5 = 5 F6 = 8 F7 - 13 F8 - 21 F9 = 34 NOTE: you must CALCULATE the Fibonacci number in your code. You should not use something like print("F7 - 13)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
