python Write a program that reads two strings stored in two different text files and prints a string containing the characters of each string interleaved. Remove white spaces from both strings before string interleaving. For example, Two strings “Hello World” and “Sky is the Limit” should generate output “HSeklyliosWtohrelLdimit” in python September 13, 2022
python Write a program that reads a text file and calculates the average word length and sentence length in that file in python September 13, 2022
python Write an automated censor program that reads the text from a file and creates a new file where all of the four-letter words have been replaced by “****”. You can ignore punctuation, and you may assume that no words in the file are split across multiple lines in python September 13, 2022
python Write a program that reads a text file and displays all the numbers found in the file in python September 13, 2022
python Write a program that reads a text file and counts the occurrences of each alphabet in the file. The program should prompt the user to enter the filename in python September 13, 2022
python Numerologists claim to be able to determine a person's character traits based on the "numeric value" of a name. The value of a name is determined by summing up the values of the letters of the name, where "a" is 1 "b" is 2 "c" is 3 and so on up to "z" being 26. For example, the name "Python" would have the value 16 + 25 + 20 + 8 + 15 + 14 = 98. Write a program that calculates the numeric value of a name provided as input in python September 12, 2022
python Write a program that allows users to enter six-digit RGB color codes and converts them into base 10. In this format, the first two hexadecimal digits represent the amount of red, the second two the amount of green, and the last two the amount of blue. For example: If a user enters FF6347, then the output should be Red (255), Green (99) and Blue (71) in python September 12, 2022
python Write a program to read a date in the format DD/MM/YYYY and print the same date in MM-DD-YYYY format in python September 12, 2022
python Write a program to read a string containing letters, each of which may be in either uppercase or lowercase, and return a tuple containing the number of vowels and consonants in the string in python September 12, 2022
python Write a program to check whether a given string is palindrome or not in python September 12, 2022
python Create a user defined module with simple functions for: addition, subtraction, multiplication, division, modulo, square, factorial. Write a program to import the module and access functions defined in the module in python September 11, 2022
python Write a program to create a list representing the results of 100 students in a test, where each element represents a student's marks (between 0 to 10), and display a histogram for the result in python September 11, 2022
python Write a program to display a graph for ReLU (Rectified Linear Unit) function in python September 11, 2022
python Write a program to print the dates of all the Sundays in a given year in python September 11, 2022
python Write a program that plays the popular scissor-rock-paper game. (A scissors can cut a paper, a rock can knock a scissors, and a paper can wrap a rock.) The program randomly generates a number 0, 1, or 2 representing scissor, rock, and paper. The program prompts the user to enter a number 0, 1, or 2 and displays a message indicating whether the user or the computer wins, loses, or draws in python September 11, 2022
python Write a program that defines functions (mean and deviation), that computes mean and standard deviation of given numbers in python. September 11, 2022
python Write a program that lets the user enter the loan amount, number of years, and interest rate, and defines a function to calculate monthly EMI, total payment and display the amortization schedule for the loan in python September 11, 2022
python Write a program that defines a function to find the GCD of two numbers using the algorithm below. The greatest common divisor (GCD) of two values can be computed using Euclid's algorithm. Starting with the values m and n, we repeatedly apply the formula: n, m = m, n%m until m is 0. At that point, n is the GCD of the original m and n (Use Recursion) in python September 11, 2022