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