This Program elicits a Farenheit value of chicken, from a user whose entry is via a keyboard, and then computes if the meat is cooked and safe to consume or not safe to consume.
user_input = input('Enter Fahrenheit Temperature Value: ')
user_input = float(user_input)
if user_input >= 165:
print('Chicken is Safe to Consume')
else:
print('Chicken is Not Safe to Consume')
This Program elicits a Farenheit value of beef, from a user whose entry is via a keyboard, and then computes if the meat is cooked and safe to consume or not safe to consume.
user_input = input('Enter Fahrenheit Temperature Value: ')
user_input = float(user_input)
if user_input >= 145:
print('Beef is Safe to Consume')
else:
print('Beef is Not Safe to Consume')
This Program elicits a Farenheit value of beef, from a user whose entry is via a keyboard, and then computes if the meat is cooked and safe to consume or not safe to consume.
user_input = input('Enter Fahrenheit Temperature Value: ')
user_input = float(user_input)
if user_input >= 145:
print('Pork is Safe to Consume')
else:
print('Pork is Not Safe to Consume')