这是某种数组(Python)吗?

时间:2018-07-04 16:01:25

标签: python python-3.x raspberry-pi

我正在使用 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)

1 个答案:

答案 0 :(得分:2)

它们tuples用于存储RGB彩色三胞胎。 您可以通过致电type(obj)来获得information about the type of any object in Python