Ответ:
R = G = B = -1
while R not in range(256):
R = int(input('R: '))
while G not in range(256):
G = int(input('G: '))
while B not in range(256):
B = int(input('B: '))
crtg = (R, G, B)
print(crtg)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
R = G = B = -1
while R not in range(256):
R = int(input('R: '))
while G not in range(256):
G = int(input('G: '))
while B not in range(256):
B = int(input('B: '))
crtg = (R, G, B)
print(crtg)