Raspberry Pi - Web Server and API
Given this Python code snippet for updating a dashboard:
What will be the printed output?
import time
sensor_value = 0
for _ in range(3):
sensor_value += 5
print(sensor_value)
time.sleep(1)What will be the printed output?
