text = "Please enter your weight in", Measurement_system
weight = input(text)
I want to give the user a prompt for their input without it being enclosed in quotation marks
In response to the above code it displays:
('Please enter your weight in', 'imperial')
Does anyone know how to get rid of these quotation marks? Thanks :)