Ask Question

3.3 lesson practice edhesive

+1
Answers (1)
  1. 30 August, 02:20
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers