Write a python program that will accept monthly salary amounts greater than zero but less
than or equal to 400,000.00 until the user enters the character ‘e’. After the user
enters the character ‘e’, calculate the net pay of all salaries by deducting income tax at
a rate of 25%, pension of 5% and housing contribution of 2% from each salary
entered. Additionally, print the number of salaries that were entered in the program
along with the number of salaries that exceed 300,000.00
write a python program
The English alphabet has 26 letters starting from A and ending with Z. If we map the
first 26 numbers i.e 1 through to 26 to each letter in the alphabet, we could encode
messages using numbers. For example, 123 could be represented as ‘ABC’ and 26 could
be the letter ‘Z’. Write a program that accepts 10 integers from the user ranging from 1
- 26. After accepting the values, the program should determine and print the
corresponding letters.