본문 바로가기

분류 전체보기81

[Python] 웹 크롤링 - 한글 문자 텍스트 깨짐 현상 해결과정 사건의 발단 Visual Studio Code 에서 Python으로 웹 크로링 예제를 따라하면서 공부하고 있었다. Youtube나 예제들에서는 '똑' 하고 넣으면, '툭'하고 튀어나오는데.. 이런 * 같은 하.. 에러로 밤새 지세우는게 하루이틀도 아니고 . . . 이제는 담담하게 고치러 간다. 에러가 발생한 개발 환경은 아래와 같다. OS : window 10 IDE : Visual Studio Code Python : 3.7(version) 아래의 소스코드는 크롤링 예제 코드 이다. import urllib.request from bs4 import BeautifulSoup #크롤링하고 싶은 웹 페이지의 url url = "" #url은 임의로 생략함 #url을 열고 내용을 읽어 온다. html = u.. 2020. 5. 7.
[CodeWars] javascript - 6kyu - Number Zoo Patrol 문제풀이 Title Number Zoo Patrol Description Background: You're working in a number zoo, and it seems that one of the numbers has gone missing! Zoo workers have no idea what number is missing, and are too incompetent to figure it out, so they're hiring you to do it for them. In case the zoo loses another number, they want your program to work regardless of how many numbers there are in total. Task: Write.. 2020. 5. 7.
[React 99% 에러잡기] Error: Object are not valid as a React child (found: object with keys{result}). if you meant to render a collection of children, use an array instead. 사건의 발단 CRA를 사용해서 React 개발 환경을 갖춘 뒤에 간단하게 '섭씨 온도'를 '화씨 온도'로 변경하는 계산기를 만들려고 했다. 섭씨 컴포넌트는 구현을 완료했고, 화씨 컴포넌트를 구현하던 중에 문제가 발생했다. 아래는 에러가 발생한 화씨 컴포넌트의 코드이다. 상위 컴포넌트로 부터 받은 데이터를 화씨 컴포넌트에서 출력하는 기능을 하는 소스 코드이다. const Fahrenheit=(props)=>{ return( 화씨 : {props} ) } 예상 외 전개 복잡하지도 않은 부분이었기 때문에 별 걱정이 없었다. 하지만, 화씨 컴포넌트 구현한뒤 확인한 브라우저는 된통 빨간색으로 도배되어 있었다...... *발 코드가 아예 200줄, 300줄이거나 로직이 복잡한 경우라면 그러려니 하면서 고치려 갔을거.. 2020. 5. 6.
[CodeWars] javascript - 6kyu - Difference of 2 문제풀이 Title Difference of 2 Description The objective is to return all pairs of integers from a given array of integers that have a difference of 2. The result array should be sorted in ascending order of values. Assume there are no duplicate integers in the array. The order of the integers in the input array should not matter. Examples [1, 2, 3, 4] should return [[1, 3], [2, 4]] [4, 1, 2, 3] should a.. 2020. 5. 6.
반응형