You are viewing a single comment's thread. Return to all comments →
import re for _ in range(int(input())): for i in re.findall(r'(?<=[ :,])#[0-9A-Fa-f]{3,6}', input()): print(i)
Hex Color Code
You are viewing a single comment's thread. Return to all comments →