Python Forum
Non Grade/School Help - PLEASE
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Non Grade/School Help - PLEASE
#7
Can clean it up and give some tips.
def cel_to_fah(celcius):
    fahrenheit = (celcius * 9/5) + 32
    return fahrenheit

def fah_to_cel(fahrenheit):
    celcius = (fahrenheit - 32) * 5/9
    return celcius

if __name__ == '__main__':
    cel = float(input('Enter the temperature in celcius: '))
    print(f'The temperature in Fahrenheit: {cel_to_fah(cel:.2f)}')

    fah = float(input('Enter the temperature in fahrenheit: '))
    print(f'The temperature in celcius: {fah_to_cel(fah):.2f}')
Output:
Enter the temperature in celcius: 0 The temperature in Fahrenheit: 32.00 Enter the temperature in fahrenheit: 32 The temperature in celcius: 0.00

Just return from functions as you us print() with explanation later.
See that indentation is 4-space and no CamelCase in Python,look at PEP-8

Look at this link Python 3's f-strings,it give code more cleaner look,
and as new(or old) Python user f-string is what should be used.
>>> for word in 'f-strings are awesome'.split():
...     print(f'{word.upper():~^20}')
~~~~~F-STRINGS~~~~~~
~~~~~~~~ARE~~~~~~~~~
~~~~~~AWESOME~~~~~~~
Reply


Messages In This Thread
Non Grade/School Help - PLEASE - by gbyrne12 - Jun-17-2021, 09:29 PM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-17-2021, 09:52 PM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-17-2021, 10:08 PM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-17-2021, 10:42 PM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-18-2021, 12:53 AM
RE: Non Grade/School Help - PLEASE - by buran - Jun-18-2021, 04:50 AM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-18-2021, 11:37 AM
RE: Non Grade/School Help - PLEASE - by gbyrne12 - Jun-18-2021, 11:59 AM
RE: Non Grade/School Help - PLEASE - by snippsat - Jun-19-2021, 07:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Simple Method to calculate average and grade ajitnayak1987 8 6,374 Apr-28-2022, 06:26 AM
Last Post: rayansaqer
  Calculating Grade Average IstvanCH 5 5,109 Jan-27-2019, 04:42 PM
Last Post: aakashjha001
  Student grade program help debug ccm1776 3 5,181 Nov-14-2018, 02:41 AM
Last Post: stullis
  Grade Loop dtweaponx 8 12,418 Oct-17-2017, 02:01 PM
Last Post: buran
  Help? Letter Grade assignment.. zepel 3 4,615 Apr-23-2017, 12:47 PM
Last Post: idontreallywolf

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020