We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Regex and Parsing
- Hex Color Code
- Discussions
Hex Color Code
Hex Color Code
Sort by
recency
|
393 Discussions
|
Please Login in order to post a comment
` Import re
for _ in range(int(input())): for hex_code in re.findall(r"(?<=.)#[\dA-Fa-f]{3,6}", input()): print(hex_code) `