Skip to content
Advertisement

finding out complementary/opposite color of a given color

I am trying to find out the complementary color of a given color using Python. here is my code. the code returns error message telling “AttributeError: ‘list’ object has no attribute ‘join'” I need a hint. In addition, there might be a more robust code which calculates the opposite/complementary color, which I am basically looking for. your suggestions will be helpful.

JavaScript

another similar function

JavaScript

Advertisement

Answer

Your join and formatting needed a fix. Lists do not have a join method, strings do:

JavaScript

The formatting for hex shoud be %02X for two hex characters and not '02%X'. The later only appends a leading 02 to a mangled output of 3 characters instead of 6.


hex is builtin function, so you may consider changing the name to, say my_hex to avoid shadowing the original hex function.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement