안녕하세요.. 자바 스크립트 내용을
파이썬에 맞게 변경할려면 어떻게 해야 하죠?
var paragraph = '052120049048048';
var regex = /\d{3}/g;
var found = paragraph.match(regex);
found = found.map(function(t){
return String.fromCharCode(t)
}).join('');
console.log(found);
이렇게 실행하면 4X100이라는 값이 나옵니다.
이걸 파이썬에서 구동할려면 어떻 명령어들로 해야하는지 도움부탁드립니다.