import re
text = 'EffectsRelaxed96% VotedHappy79% VotedEuphoric67% Voted'
print( re.sub(r'([a-z])([A-Z0-9])', r'\1 \2', text).replace("Effects", "Effects:").replace("Voted", "Voted,").rstrip(',') )