This exercise will input number from the terminal, perform calculations and output results.
Complete the script c_to_f.py
to
- Prompt the user for a celcius temperature.
- Output the equivalent Fahrenheit temperature.
$ py c_to_f.py
Enter a Celcius temperature as a float: 39.3
Temperature in Fahrenheit: 102.74
Complete the script currency.py
to
- Prompt the user for a USD amount.
- Output the equivalent Thai Baht conversion amount.
Use Xe or another currency converter of your choice to determine the conversion rate.
$ py currency.py
Enter currency amount in USD: 101.13
3406.9382309999996 Thai Baht
Commit and push your code to Github when complete.