목록분류 전체보기 (91)
Love Every Moment

1. Conditional Steps (1) if - else Statement C언어와 파이썬의 차이점 - C언어: if (x < 10) 괄호를 이용하여 구분한다 - 파이썬: if x < 10 : 괄호를 사용하지 않고 마지막에 콜론(:) 을 붙인다 (2) Indentation if, for, while 문을 사용할 때에 들여쓰기를 해준다 C 언어와 다르게 파이썬에서는 탭을 이용하면 시스템이 혼동할 가능성이 있어서 사용하지 않는게 좋다 2. elif Statement C 언어에서의 else if 와 같은 기능을 한다. 파이썬에서 if / elif / else 의 활용 예시 if _____ : elif ____ : else : 두 번째 사진처럼 else 가 없는 경우도 있고 elif 를 여러번 사용할 수도..

1. 마케팅 캠페인(Marketing Campaign) - Text, Banners, SNS ads - Marketing campaigns are tracked in GA through campagin tagging - Campaings tags are extra bits of information that you add to the URL links - These include tracking parameters followed by equal sign and the single word or hyphen - Required campaign tags: Medium, Source, Campaign - Optional campaign tags: Content, Term (1) 미디엄(Medium) - Co..

1. Audience Reports (1) Active Users - How many users accessed - 1 day / 7 day / 14 day / 30 day (2) Demographics - Age, gender, ... (3) Interests (4) Location - Country, continent, city, ... 인구통계 및 관심분야 보고서에서 데이터를 보려면 '광고 기능' 설정을 사용해야 한다. 2. Acquisition Reports How does Google Analytics identify traffic source for your website? - When user lands on your site, the tracking code automatically cap..

1. 마케팅(Marketing) (1) 획득(Acquisition) - 사용자를 어떻게 확보하였는가? (2) 행동(Behavior) - 방문 형태 (3) 전환(Conversion) - 고객이 해당 상품이나 서비스를 구매 2. 구글 애널리틱스 계정 (1) 계정(Account) - 구글 애널리틱스의 최상위 구성 요소 - 대기업의 경우 여러 계정을 소유 (2) 속성(Property) - 한 계정에 최대 50개의 속성 생성 가능 - Each property has its unique tracking code - Each property has several views ex) You may have seperate properties for different sales divisions or brands ex) ..
1. 데이터 베이스 (DB, Database) (1) 넓은 의미: 컴퓨터 안에 기록된 모든 데이터의 집합 (2) 일반적 의미: 특정 데이터를 간단하게 찾을 수 있도록 정리된 형태 데이터 베이스 내의 데이터는 영구적으로 보존되어야 한다 주기억장치에 데이터를 저장한다면 전원을 끄는 순간 사라지게 된다 따라서 하드디스크나 플래시메모리(SSD) 등의 비휘발성 저장장치에 저장한다 2. 데이터 베이스 관리 시스템 (DBMS, Database Management System) (1) 생산성 향상 - 데이터 검색, 추가, 삭제, 갱신 등의 기능을 제공한다 (2) 기능성 확보 - 복수 유저의 요청에 대응하거나 - 대용량의 데이터를 저장할 수 있다 (3) 신뢰성 확보 - 컴퓨터 여러대를 두고 확장성과 부하분산을 구현한다 ..

1. 연산자(Operators) + - * / ** % Precedence: Parenthesis - Power - Multiplication - Addition - Left to Right C언어와 다른점: (1) ** 가 거듭제곱 연산자로 쓰인다 (2) + 가 string 에 string 을 더하는 연산자로 쓰일 수 있다 2. 데이터 타입(Data Type) Variables, literals, and constants have a "type" type() 함수로 해당 변수의 타입을 알 수 있다 올바른 예시 (1) >>> eee = 'hello ' + 'there' >>> print(eee) hello there 올바른 예시 (2) >>> ddd = 4 + 1 >>> print(ddd) 5 *** t..

1. 상수(Constants) Fixed values such as numbers, letters, and strings Their value does not change String constants use single quotes(') or double quotes(") 2. 변수(Variables) A named place in the memory where a programmer can store data and later retrieve the data using the variable "name" You can change the the contents of a variable in a later statement VARIABLE NAME RULES: Must start with a lette..

컴퓨터 프로그래밍 코딩 교육 1. 예약어(Reseverd Word) You cannot use Reserved Words as variable names / identifiers ex) True, False, class, return, is, finally, none, if, else, for, while, continue, def, from, and, not, or, ... x = 2 ← Assignment statement x = x + 2 ← Assignment with expression print(x) ← Print statement x : 변수(Variable) = : 연산자(Operator) 2 : 상수(Constant) print() : 예약어(Reserved Word) 2. Program..