I'm currently trying to store user input as integers without appending them to a list or creating a list at all.
First off, I tried using 5 independent variables for each input (code below), and when this code is ran it gives something to the tune of:
The fahrenheits you entered are (1, 2, 3, 4, 5)
How would I go about removing those parentheses?
firstFahr = int(input("Please enter a Fahrenheit temperature: "))
secondFahr = int(input("Please enter a Fahrenheit temperature: "))
thirdFahr = int(input("Please enter a third Fahrenheit temperature: "))
fourthFahr = int(input("PLease enter a fourth Fahrenheit temperature: "))
fifthFahr = int(input("Please enter a fifth Fahrenheit temperature: "))
enteredFahrs = firstFahr, secondFahr, thirdFahr, fourthFahr, fifthFahr
print("The fahrenheits you entered are", enteredFahrs)
Thanks for any help in advance and apologies if this seems like a noob question, as I'm quite new to Python.