+ 1
What is wrong with this code
Color = input(" Please enter color ") if color == "black" : Print ("It is black")
1 Answer
0
print not Print and you should indent it.
if color == "black"
print(" ")
Color and color are not the same.
Color = input(" Please enter color ") if color == "black" : Print ("It is black")