CHALLENGE
ACTIVITY
7.2.2: Advanced string formatting.
568844.4228274.qx3zqy7
Start
String color_name and integer color_intensity are read from input. Use one print(f' ') statement to output the following, all on one
line:
• color_name with a width of 13 characters, right-aligned, and with the fill character '['
• color_intensity with a width of 13 characters, centered, and with the fill character ']'
? Click here for example
1 color_name = input()
2 color_intensity = int(input())
3
4
Your code goes here
5
1
2
3