Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 814 Bytes

Week01Day03.md

File metadata and controls

27 lines (17 loc) · 814 Bytes

Tasks:

Download the UML tool for System Design

System Design Book

For Tomorrow:

Printing Patterns

Assignments:

  1. Write a Python program to get the Fibonacci series between 0 to 50.

Note : The Fibonacci Sequence is the series of numbers : 0, 1, 1, 2, 3, 5, 8, 13, 21, .... Every next number is found by adding up the two numbers before it. Expected Output : 1 1 2 3 5 8 13 21 34

CCs:

  1. Write a Python program to convert temperatures to and from celsius, fahrenheit. Formula : c/5 = f-32/9 [ where c = temperature in celsius and f = temperature in fahrenheit ] Expected Output : 60°C is 140 in Fahrenheit 45°F is 7 in Celsius