Menu Close

Category: Python

Check the key

Write a program to check whether the given key is present in the dictionary. If the key is present then display the value of the…

Compute the Sum of Cosine Series

Python Program to Find the Sum of Cosine Series. Input:First Line: Value of x in degreesSecond Line: Number of terms Output:Print the Sum of Cosine…

Find the Sum of Sine Series

Python Program to Find the Sum of Sine Series. Input:First Line : The value of x in degreesSecond Line: The number of terms Output:Print the…

Remove the Vowels from the string

Write a program that accepts a string and redisplays the same string after removing vowels from it. INPUT_1:Enter any String:  welcomeOUTPUT:Without Vowels:  wlcm INPUT_2:Enter any…

Find the exponentiation of a number

Write a program to find the Exponentiation of given number. INPUT_1:Base:  5N number of inputs:  5 OUTPUT:The total terms is:  515251256253125 INPUT_2:Base:  2N number of…