Skip to content
Advertisement

Trouble converting Javascript source to Python

I’m trying to convert a Javascript function to Python. Most of it was no problem but there’s one statement I’m not sure how to convert:

JavaScript

The Python so far is:

JavaScript

idk what +() or /./g are for. The complete JS function is:

JavaScript

Advertisement

Answer

The /./g is a regular expression and the +() coerces a string into a number (and the 0x makes it hexadecimal). In Python you’d use the re module and the int() builtin for that.

The replace duplicates the characters if the color is written in its short form. The Python equivalent is a re.sub(). You use a backslash instead of a dollar for back-references in Python’s regex dialect. So 1 refers to the first matching group.

JavaScript

So for a short string, this replaces each character with itself twice, but for a long string this replaces each character with itself once (no change).

Then you use a base of 16 to convert a hexadecimal string to an int:

JavaScript

All together:

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