Menu Close

Prime Number…-FTC

Print the First N prime numbers in Python. If you want to find prime numbers between two range click here. Input_1:Enter the N number: 100Output:[2,…

Sum of the Input in python…-FTC

Write a program to find the sum of the entered numbers Refer sample input and output for formatting specification Input_1:Enter any number: 10Output:1 Input_2:Enter any…

Odd and Even in a list…FTC

Python Program to Put Even and Odd elements in a List into Two Different Lists InputFirst Line is the Number of InputsSecond line is the…

Median of Three…-FTC

Write a function that takes three numbers as parameters, and returns the median value of those parameters as its result. Include a main program that…

First and Last…-FTC

Write a program to interchange or swap the first and last number in the list Input: The size of the list List Elements Output: The…

Print Odd Numbers in range…-FTC

Write a program to print all the odd numbers between two ranges(Include the range too) Refer sample input and output for formatting specification. Input_1:Enter starting…

Compare List in python…-FTC

Write a program to compare two list and display the comparison result Input: The Size of First List The Size of Second List First List…