Computer Science, asked by ankushkundu78, 9 months ago

7: Write a program in python to the largest among three numbers
8: Write a program in python to print the Fibonacci sequence​

Answers

Answered by shettypooja926
2

Explanation:

Python program to find the largest number among the three input numbers.

# take three numbers from user.

num1 = float(input("Enter first number: "))

num2 = float(input("Enter second number: "))

num3 = float(input("Enter third number: "))

if (num1 > num2) and (num1 > num3):

largest = num1.

Similar questions