Menu Close

Word Count in Python…-FTC

Write a Python program to count the number of entered words in a given string.Refer sample input and output for formatting specification.All float values are…

Display Time in python…-FTC

Time Challenge to display hours minutes and seconds in both 12 and 24 hours format.24 hours format: 23:30:12 Standard format: 11:30:12 pm. Input->Hour: 23Min: 35Sec:…

Sum of Odd And Even in Python…-FTC

Write a program to find the sum of odd numbers, even numbers and negative numbers. Input:Enter the N number: 510-1020-2045 Output:Sum of positive even numbers:…

Sec To Time python….-FTC

Develop a program that begins by reading a number of seconds from the user. Then your program should display the equivalent amount of time in…

Alphabet pyramid in python…-FTC

Learn how to print half pyramids using “Alphabet”. Write a program using “for” loop. Get the integer value as input and print half pyramid using…

Prime Factor in python…-FTC

Python Program to Compute Prime Factors of an Integer Input:        Enter the number: 3999Output:        3        31 …