This is my very first question so don't be cruel, please :-) (I tried to find something in the questions database, but wasn't sucseed).
Could you please advise me how can I remove extra spase in the beginning of the line in the output - temperature in Farenheit? If it is possible - the solution for beginner.
celsius = input('Enter Celsius temperature:\n')
fahrenheit = (float(celsius)*(9/5))+32
print('Fahrenheit temperature:\n',fahrenheit)
Enter Celsius temperature:
100
Fahrenheit temperature:
212.0
Thank you in advance.