Jump to level 1
Color is a named tuple with fields: name, R, G, and B. Read one string and three integers from input. Create color_data as a Color tuple, and initialize color_data with color_name, red_channel, green_channel, and blue_channel as the fields.
- Click here for example
```
from collections import namedtuple
Color = namedtuple('rolor', ['name', 'R', 'G', 'B'])
l'`' Your code goes here
print(f'Color name: {color_data.name}, R: {color_data.R}, G: {color_data.G}, B: {color_data.B}')
```