Here is a way to combine two values, and print them out.
string_value = 'BOF'float_value = 0.0print "%s:%s" % (string_value[-1], float_value)>>F:0.0
Here is a way to combine two values, and print them out.
string_value = 'BOF'float_value = 0.0print "%s:%s" % (string_value[-1], float_value)>>F:0.0