Need help with celcius to fahrenheit converter code | Newbie | | Join Date: Jan 2008
Posts: 15
| |
I'm new to Python and am trying to figure out how to streamline the code at bottom to get it more simple but am having trouble. I was hoping that someone here could help me out?
The program I am trying to create simply asks the terminal operator for five different celsius temperatures, processes them into fahrenheit values and outputs them to the screen. The results should look something like this: - This is a program that converts celsius to Fahrenheit
-
Enter 5 Celsius temperatures seperated by a comma: 1,2,3,4,5
-
------------------------------------------------------------
-
1 degrees Celsius is 33.8 degrees Fahrenheit.
-
2 degrees Celsius is 35.6 degrees Fahrenheit.
-
3 degrees Celsius is 37.4 degrees Fahrenheit.
-
4 degrees Celsius is 39.2 degrees Fahrenheit.
-
5 degrees Celsius is 41.0 degrees Fahrenheit.
Here is my code now, it works but as you can see it is bulky and repetative. Theres got to be a simple way to streamline it: - def main():
-
print "\nThis is a program that converts five celsius values to Fahrenheit"
-
ctemp1, ctemp2, ctemp3, ctemp4, ctemp5 = input("\nEnter 5 Celsius temperatures seperated by a comma: ")
-
ftemp1 = 9.0 / 5.0 * ctemp1 + 32
-
ftemp2 = 9.0 / 5.0 * ctemp2 + 32
-
ftemp3 = 9.0 / 5.0 * ctemp3 + 32
-
ftemp4 = 9.0 / 5.0 * ctemp4 + 32
-
ftemp5 = 9.0 / 5.0 * ctemp5 + 32
-
print "------------------------------------------------------------"
-
print ctemp1, "degrees Celsius is", ftemp1, "degrees Fahrenheit."
-
print ctemp2, "degrees Celsius is", ftemp2, "degrees Fahrenheit."
-
print ctemp3, "degrees Celsius is", ftemp3, "degrees Fahrenheit."
-
print ctemp4, "degrees Celsius is", ftemp4, "degrees Fahrenheit."
-
print ctemp5, "degrees Celsius is", ftemp5, "degrees Fahrenheit."
-
-
main()
Help? Thanks
|  | Member | | Join Date: Aug 2007 Location: bangalore, india
Posts: 111
| | | re: Need help with celcius to fahrenheit converter code Quote:
Originally Posted by sigkill9 I'm new to Python and am trying to figure out how to streamline the code at bottom to get it more simple but am having trouble. I was hoping that someone here could help me out?
The program I am trying to create simply asks the terminal operator for five different celsius temperatures, processes them into fahrenheit values and outputs them to the screen. The results should look something like this: - This is a program that converts celsius to Fahrenheit
-
Enter 5 Celsius temperatures seperated by a comma: 1,2,3,4,5
-
------------------------------------------------------------
-
1 degrees Celsius is 33.8 degrees Fahrenheit.
-
2 degrees Celsius is 35.6 degrees Fahrenheit.
-
3 degrees Celsius is 37.4 degrees Fahrenheit.
-
4 degrees Celsius is 39.2 degrees Fahrenheit.
-
5 degrees Celsius is 41.0 degrees Fahrenheit.
Here is my code now, it works but as you can see it is bulky and repetative. Theres got to be a simple way to streamline it: - def main():
-
print "\nThis is a program that converts five celsius values to Fahrenheit"
-
ctemp1, ctemp2, ctemp3, ctemp4, ctemp5 = input("\nEnter 5 Celsius temperatures seperated by a comma: ")
-
ftemp1 = 9.0 / 5.0 * ctemp1 + 32
-
ftemp2 = 9.0 / 5.0 * ctemp2 + 32
-
ftemp3 = 9.0 / 5.0 * ctemp3 + 32
-
ftemp4 = 9.0 / 5.0 * ctemp4 + 32
-
ftemp5 = 9.0 / 5.0 * ctemp5 + 32
-
print "------------------------------------------------------------"
-
print ctemp1, "degrees Celsius is", ftemp1, "degrees Fahrenheit."
-
print ctemp2, "degrees Celsius is", ftemp2, "degrees Fahrenheit."
-
print ctemp3, "degrees Celsius is", ftemp3, "degrees Fahrenheit."
-
print ctemp4, "degrees Celsius is", ftemp4, "degrees Fahrenheit."
-
print ctemp5, "degrees Celsius is", ftemp5, "degrees Fahrenheit."
-
-
main()
Help? Thanks
u can use the for loop : -
-
for i in range(1,5):
-
print i , " degree celcius is " , i * 9/5.0 + 32 , "degree farenheit "
-
-
|  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,392 network members.
|