Skip to content

Commit

Permalink
Merge pull request #147 from passionlord/main
Browse files Browse the repository at this point in the history
celcius to farenheit program in python
  • Loading branch information
aman-raza authored Oct 4, 2021
2 parents 58b10d9 + 554e8e4 commit da83fb0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Convert Celsius To Fahrenheit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

celsius = 37.5

fahrenheit = (celsius * 1.8) + 32
print('%0.1f degree Celsius is equal to %0.1f degree Fahrenheit' %(celsius,fahrenheit))

0 comments on commit da83fb0

Please sign in to comment.