For most printing, we want to have a data type of string. This is especially true for the OLED screen.
However, the two measurements that we have: the light level and the temperature are of two different types! The light level is an integer while the temperature is a float data type.
While the print() function we have used before can sometimes convert these data types automatically, we’ll have to convert these manually to a string type using the str() function.
We’ll get more into data types in future lessons. For now, just copy the blocks shown and you’re ready to run the code!