Python Forum
Post IF Statement Input
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post IF Statement Input
#2
Found it.
My option was a str and not an int. changed the first input to an int, and she works. Thanks anyways guys, i'm sure i'll be back again!

print("Option 1: Convert Fahrenheit to Celsius")
print("Option 2: Convert Celsius to Fahrenheit")
choice = int(input("Which do you want to do?    Option "))
if choice == 1:
    fahrenheit = int(input("Enter the temp in Fahrenheit: "))
    f_to_c = (fahrenheit - 32)*(5/9)
    print("The Celsius equivalent is: %4.3f" %(f_to_c))
if choice == 2:
    celsius = int(input("Enter the temp in Celcius: "))
    c_to_f = (celsius*9/5)+32
    print("The Celsius equivalent is: %4.3f" %(c_to_f))
Gribouillis write Jun-04-2021, 09:43 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

I fixed for you this time. Please use code tags on future posts.
Gribouillis likes this post
Reply


Messages In This Thread
Post IF Statement Input - by OrphanedSoul - Jun-04-2021, 01:49 AM
RE: Post IF Statement Input - by OrphanedSoul - Jun-04-2021, 02:05 AM
RE: Post IF Statement Input - by deanhystad - Jun-04-2021, 05:03 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  if/else statement only outputs else statement regardless of input KameronG 2 2,670 Feb-08-2019, 08:04 AM
Last Post: KameronG
  Help Formatting Print Statement (input from 3 lists) X 2 Hebruiser 11 6,429 Dec-06-2017, 04:47 PM
Last Post: gruntfutuk

Forum Jump:

User Panel Messages

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