I get TypeError: not enough arguments for format string for the following code:
print("%s,%s,%s" % time.strftime("%m/%d/%Y %H:%M:%S"), (sensor.read_temperature(), (sensor.read_humidity()))
It should print the date/time and two variables in CSV format to the console. What's wrong with my format string?
(parentheses for the number of closing parentheses.