Python_Programs_All_Questions
Python_Programs_All_Questions
def sum_of_odds(n):
Example Output:
Input: n = 5
import cmath
d = cmath.sqrt(b**2 - 4*a*c)
root1 = (-b + d) / (2 * a)
root2 = (-b - d) / (2 * a)
Example Output:
Example Output:
return a * b
Example Output:
Example Output:
6. Program to accept two numbers, find the greatest, and print the result.
Example Output:
def sum_of_evens(n):
Example Output:
Input: n=4
Output: Sum of first 4 even numbers is: 20
# Without recursion
def factorial_iterative(n):
result = 1
result *= i
return result
# With recursion
def factorial_recursive(n):
if n == 0 or n == 1:
return 1
return n * factorial_recursive(n - 1)
Example Output:
Input: n=5
fib_sequence = [0, 1]
fib_sequence.append(fib_sequence[-1] + fib_sequence[-2])
return fib_sequence[:n]
Example Output:
Input: n=5
10. Program to find the sum of first 'n' odd numbers (function-based).
def sum_of_odds(n):
Example Output:
Input: n=3