我正在使用 Python 和 RPI ,并且在Sense HAT仿真器的示例中有此脚本,因为我不知道这是一对线对我来说,它们看起来像一个数组,但我认为它们可能是其他类型的数据,所以这是代码:
class Struct:
def __init__(self):
pass
def __getattribute__(self, key):
return super().__getattribute__(key)
def __setattribute__(self, key, value):
super().__setattribute__(key, value)
这两个是什么样的数据?
from sense_emu import SenseHat
sense = SenseHat()
green = (0, 255, 0)
white = (255, 255, 255)
while True:
humidity = sense.humidity
humidity_value = 64 * humidity / 100
pixels = [green if i < humidity_value else white for i in range(64)]
sense.set_pixels(pixels)
答案 0 :(得分:2)
它们tuples用于存储RGB彩色三胞胎。
您可以通过致电type(obj)
来获得information about the type of any object in Python。