Write a Python program that • Uses a while loop to produce a table that shows th
ID: 3630729 • Letter: W
Question
Write a Python program that• Uses a while loop to produce a table that shows the conversion of degrees Celsius to degrees Fahrenheit between 0 degrees Celsius and 100 degrees Celsius. The conversion formula is Fahrenheit = Celsius * 9 / 5 + 32
• Uses a for loop to produce a table that shows the conversion of degrees Fahrenheit to degrees Celsius between 0 degrees Fahrenheit and 100 degrees Fahrenheit. The conversion formula is Centigrade = (Fahrenheit – 32) * 5/9.
Each conversion table should be contained in a separate module called from a main module. Submit pseudocode for each module