From 331017470f4e5ebf44c67df956ec2d1dcab99c6c Mon Sep 17 00:00:00 2001 From: dumbprogrammer <102885633+Lilafian@users.noreply.github.com> Date: Fri, 23 Dec 2022 22:57:33 -0600 Subject: [PATCH] Edit CMYK to RBG grammar/spelling --- scripts/CMYK To RGB/CMYKtoRGB.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/CMYK To RGB/CMYKtoRGB.py b/scripts/CMYK To RGB/CMYKtoRGB.py index 64bf3f2..49e774e 100644 --- a/scripts/CMYK To RGB/CMYKtoRGB.py +++ b/scripts/CMYK To RGB/CMYKtoRGB.py @@ -8,11 +8,11 @@ def CMYKtoRGB(c, m, y, k) : b=round(255.0-((min(1.0, y*(1.0-k)+k))*255.0)) return (r,g,b) -print("Welcome To CMYK to RGB Convertor || INPUT CMYK codes and rest leave it to the convertor\n") +print("Welcome to the CMYK to RGB Convertor || Input CMYK codes and rest leave it to the converter\n") c=int(input("C Value: ")) m=int(input("M Value: ")) y=int(input("Y Value: ")) k=int(input("K Value: ")) print("Processing...") -print("\nYour RGB values are", CMYKtoRGB(c,m,y,k)) \ No newline at end of file +print("\nYour RGB values are", CMYKtoRGB(c,m,y,k))