Ask Question
10 March, 18:42

3.3 lesson practice edhesive

+4
Answers (1)
  1. 10 March, 21:02
    0
    The requirement can be found from the edhesive website, and it is to write a program to enter the value of RGB, and check whether its value is in between 0 and 255. The program should print out of range if its not within this (0 and 255). And it should print it is not right if it is below 0. The required program is as mentioned in explanation.

    Explanation:

    import time

    green = int (input ("Input the value of Green: "))

    red = int (input ("Input the value of Red: "))

    blue = int (input ("Input the value of Blue: "))

    if green < = 255 and red < = 255 and blue < = 255:

    print ("Everything is correct.")

    if red > 255:

    print ("Red is not right.")

    if blue > 255:

    print ("Blue is not right.")

    if green > 255:

    print ("Green is not right.")

    if red < 0:

    print ("Red is not right.")

    if blue < 0:

    print ("Blue is not right.")

    if green < 0:

    print ("Green is not right.")
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “3.3 lesson practice edhesive ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers