TypeError: decoding str is not supported
Not sure about what you expect str(‘Speed -‘, str(speed)) to do. What you want is a string concat: You can also use string formatting and not worry about type casts:
Not sure about what you expect str(‘Speed -‘, str(speed)) to do. What you want is a string concat: You can also use string formatting and not worry about type casts: