I’m creating a code that lets the user pick how much brightness they want a photo to have. I’m doing this by manipulating the pixels and I have a syntax error but I can’t seem to find the problem. Here’s a screenshot of the code below. Please help!!
1 Like
right now you’re doing: int(input(...)
, add another )
so that it’s int(input(...))
5 Likes
Always be sure to check the lines above when you get an error like this. Often times it is because you have the wrong amount of parenthesis or brackets.
3 Likes