본문 바로가기

Ankiwoong

(1841)
HTML5 - 190608 Basic Study 18(CSS- Navigation Bar / 링크 바) 1. Navigation Bar(네비게이션 바) 웹 사이트의 주요 디자인 중 하나. 웹 페이지의 메뉴를 의미. 다른 말로는 Link Bar(링크 바)라고 불린다. 2. HTML Code 네비게이션바 만들기 button1 button2 button3 button4 button5 button6 button7 3. CSS Code @charset "utf-8"; /* CSS Document */ * { margin: 0; padding: 0; } /* 목록 기호 없애기 */ ul, li{ list-style:none; } /* 밑줄 없애기 */ a{ color:black; text-decoration:none; } /* a태그에 마우스 올릴때를 선택*/ /* 밑줄넣기 */ a:hover{ text-decora..
HTML5 - 190608 Basic Study 17(CSS Basic 2) 1. HTML Code 아리가또 감사합니다 CSS 속성 이해하기 글자 관련 속성 welcome to my world welcome to my world welcome to my world welcome to my world 안녕하세요 2. CSS Code @charset "utf-8"; /* CSS Document */ * { margin: 0; padding: 0; } p.bbb{ border:5px double red; } p#bbb{ text-align:center; } p#bbb.bbb{ font-style:italic; } p.bbb#bbb{ font-weight:bold; } div>p{ font-family:"궁서", sans-serif; } p#abc1{ font-family:sans-se..
HTML5 - 190608 Basic Study 16(CSS Basic 1) 1. HTML Code CSS 선택자 실습하기 welcome to my world welcome to my world welcome to my world 안녕하세요. 안녕하세요. 감사합니다. 어서오세요. 선택자1 선택자2 선택자3 선택자4 선택자안녕하세요 무궁화 꽃이 피었습니다. 2. HTML 파일 3. HTML 미리보기
Python Learn the basics Quiz 40 Q>You are given a string where you have to find its first word.(당신은 첫 단어를 찾아야 만하는 문자열을 받게됩니다.)When solving a task pay attention to the following points:(작업을 해결할 때 다음 사항에주의하십시오.)There can be dots and commas in a string.(문자열에는 점과 쉼표가있을 수 있습니다.)A string can start with a letter or, for example, a dot or space.(문자열은 문자 또는 도트 또는 공백으로 시작할 수 있습니다.)A word can contain an apostrophe and it's a part of a wo..
Python Learn the basics Quiz 39 Q>For the input of your function, you will be given one sentence. You have to return a corrected version, that starts with a capital letter and ends with a period (dot).(함수의 입력을 위해, 당신은 한 문장을 받게 될 것입니다. 대문자로 시작하고 마침표 (점)로 끝나는 수정 된 버전을 반환해야합니다.)Pay attention to the fact that not all of the fixes are necessary. If a sentence already ends with a period (dot), then adding another one will be a mista..
Python Learn the basics Quiz 38 Q>We have prepared a set of Editor's Choice Solutions. You will see them first after you solve the mission. In order to see all other solutions you should change the filter.(우리는 Editor 's Choice Solutions 세트를 준비했습니다. 선교사를 해결 한 후에 그들을 먼저 볼 것입니다. 다른 모든 솔루션을 보려면 필터를 변경해야합니다.)In this mission you should write a function that introduce a person with a given parameters in attributes.(이 임무에서는 속성에 주어진 매개..
Pandas - Naver 검색어 분석 1. Import Modulefrom Crawler import crawler from print_df import print_df from pandas import DataFrame 2. Codefrom Crawler import crawler from print_df import print_df from pandas import DataFrame dom = crawler.select("https://www.naver.com", selector=".ah_roll_area > .ah_l > .ah_item > .ah_a > .ah_k") rank_list = [] keyword_list = [] for i, item in enumerate(dom): rank_list.append( "%02d위" % (i..
190607 16:42> Naver 실시간 검색어 20위 - Naver 실시간 검색어 분석 - Import Modulefrom Crawler import crawler from print_df import print_df from pandas import DataFrame - Data 분석 순서데이터 수집 -> 크롤링 수행 -> 데이터 전처리 -> 검색어를 리스트로 분류 -> 데이터 프레임 생성 - Data Frame(20, 1)+------+------------------------------+| | 검색어 |+------+------------------------------+| 01위 | 남태현 || 02위 | 장재인 || 03위 | 케세라세라 || 04위 | 차명진 || 05위 | 대한민국 호주 || 06위 | 한국 호주 || 07위 | 김원봉 || ..