Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Виберіть правильний фрагмент коду, що створює іменований кортеж Pixel
Pixel = collections.namedtuple('Pixel', 'red', 'green', 'blue') black = Pixel(0, 0, 0)
Pixel = collections.namedtuple(Pixel, ['red', 'green', 'blue']) black = Pixel(0, 0, 0)
Pixel = collections.namedtuple(Pixel, 'red gree blue') black = Pixel(0, 0, 0)
Pixel = collections.namedtuple('Pixel', ['red', 'green', 'blue']) black = Pixel(0, 0, 0)
Pixel = collections.namedtuple('Pixel', 'red gree blue') black = Pixel(0, 0, 0)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!