본문 바로가기

Ankiwoong

(1837)
HTML5 - 190615 Basic Study 33(Sitemap 제작 - 3) 1. Sitemap 사이트의 설계도. 크롤링 로봇이 이용할 수 있는 웹사이트의 접근 가능한 페이지의 목록. 2. HTML Code 사이트맵 회사소개 출판이념 회사연혁 찾아오시는길 신간소개 디카 그래픽 오피스 ITQ 경영/경제 기타 도서소개 디카 그래픽 오피스 ITQ 경영/경제 기타 영상강좌 디카 그래픽 오피스 ITQ 경영/경제 기타 자료실 디카 그래픽 오피스 ITQ 경영/경제 기타 고객마당 공지사항 1:1 게시판 3. CSS Code @charset "utf-8"; /* CSS Document */ body { background:#FFF; color:#333; font-size:0.75em; font-family:맑은 고딕, 돋움, sans-serif; margin:0; line-height:1.5em..
Python Learn the basics Quiz 67 Q> A median is a numerical value separating the upper half of a sorted array of numbers from the lower half. (중앙값은 정렬 된 숫자 배열의 위쪽 절반을 아래쪽 절반에서 분리하는 숫자 값입니다.) In a list where there are an odd number of entities, the median is the number found in the middle of the array. (홀수의 엔티티가있는 목록에서 중앙값은 배열의 중간에있는 번호입니다.) If the array contains an even number of entities, then there is no single middle value, ..
Python Learn the basics Quiz 66 Q> Roman numerals come from the ancient Roman numbering system. (로마 숫자는 고대 로마 넘버링 시스템에서 왔습니다.) They are based on specific letters of the alphabet which are combined to signify the sum (or, in some cases, the difference) of their values. (그들은 알파벳의 특정 문자를 기반으로하여 그 값의 합 (또는 어떤 경우에는 차이)을 나타냅니다) The first ten Roman numerals are: (처음 10 개의 로마 숫자는 다음과 같습니다.) I, II, III, IV, V, VI, VII, VIII, IX, and X...
Python Learn the basics Quiz 65 Q> Let's continue examining words. (단어를 계속해서 살펴 봅시다.) You are given two string with words separated by commas. (단어가 쉼표로 구분 된 두 개의 문자열이 제공됩니다.) Try to find what is common between these strings. (이 문자열들 사이에 공통점이 있는지 찾으십시오.) The words are not repeated in the same string. (단어는 동일한 문자열에서 반복되지 않습니다.) Your function should find all of the words that appear in both strings. (함수는 두 문자열에 나타나는 모든 단어를 찾아야합니다..
Python Learn the basics Quiz 64 Q> Over six years ago, in December 1989, I was looking for a "hobby" programming project that would keep me occupied during the week around Christmas. (6 년 전인 1989 년 12 월, 저는 크리스마스 주변의 한 주 동안 계속 저를 지켜줄 "취미"프로그래밍 프로젝트를 찾고있었습니다.) My office (a government-run research lab in Amsterdam) would be closed, but I had a home computer, and not much else on my hands. 내 사무실 (암스테르담에서 정부가 운영하는 연구실)은 폐쇄 될 것이지만,..
Python Learn the basics Quiz 63 Q> Tic-Tac-Toe, sometimes also known as Xs and Os, is a game for two players (X and O) who take turns marking the spaces in a 3×3 grid. (Tic-Tac-Toe는 때로는 Xs와 Os라고도하며, 2 명의 플레이어 (X와 O)가 3 × 3 그리드에서 공백을 표시하는 게임입니다.) The player who succeeds in placing three respective marks in a horizontal, vertical, or diagonal rows (NW-SE and NE-SW) wins the game. (수평, 수직 또는 대각선 (NW-SE 및 NE-SW)에 3 개의 각 마크를 넣으면 성공..
Python Learn the basics Quiz 62 Q> Stephan has a friend who happens to be a little mechbird. (Stephan에는 작은 mechbird 인 우연히 친구가있다) Recently, he was trying to teach it how to speak basic language. (최근 그는 기본 언어를 말하는 법을 가르치려고 노력하고있었습니다.) Today the bird spoke its first word: "hieeelalaooo". (오늘 새는 그것의 첫번째 낱말을 말했다 : "hieeelalaooo".) This sounds a lot like "hello", but with too many vowels. (이것은 "hello"와 비슷하지만 모음이 너무 많습니다.) Stephan as..
Python Learn the basics Quiz 61 Q> You are given a text, which contains different english letters and punctuation symbols. (다른 영어 문자와 구두점 기호가 포함 된 텍스트가 제공됩니다.) You should find the most frequent letter in the text. (본문에서 가장 빈번한 편지를 찾아야합니다.) The letter returned must be in lower case. (반환 된 서신은 소문자 여야합니다.) While checking for the most wanted letter, casing does not matter, so for the purpose of your search, "A" == "a". (가장 원하는 편지를..