Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
modified file to fit the 88-character limit
  • Loading branch information
karimzakir02 committed Jul 8, 2020
commit d966cd301db93ee4fb61ff603a939180da6e94ac
3 changes: 2 additions & 1 deletion conversions/fahrenheit_to_celsius.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def fahrenheit_to_celsius(fahrenheit):


celsius = (fahrenheit - 32)*5/9 # value converted from fahrenheit to celsius
celsius = round(celsius, 2) # converted (celsius) value is rounded to two decimal places
celsius = round(celsius, 2)
# converted (celsius) value is rounded to two decimal places
print(celsius)

if __name__ == "__main__":
Expand Down