I have a variable below:
weatherWind = int(round(c["windSpeed"])), "mph", bearing_to_direction(c["windBearing"])
at the moment windSpeed
and windBearing
are value taken from the Dark Sky weather API. However when I print this out it has the brackets and quotations in it:
(8, 'mph', 'W')
All my other variables print out correctly. i would like it to print out like this:
8 mph W