Raspberry Pi - Data Logging and Databases
What is wrong with this code snippet for logging data to CSV on Raspberry Pi?
import csv
with open('log.csv', 'a') as file:
writer = csv.writer(file)
writer.writerow('12:00', '24')