목록PROGRAMMING::LANGUAGE/Python (38)
Love Every Moment
출처 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net 문제 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. 예제 # 입력 7 3 # 출력 10 4 21 2 1 풀이 A, B = input().split() A = int(A) B = int(B) print(A+B) print(A-B) print(A*B) print(int(A/B)) print(A%B) 노트 input() 을 단독으로만 사용할 줄 알았는데 split() 으로 입력 받은 것을 나누어 저장이 가능하다는 것을 배웠다 원래 print(..
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. 연산자(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..
1. 모두를 위한 파이썬(Python for Everybody) Michigan 대학의 Charles R. Severance 교수가 진행하는 모두를 위한 파이썬 강의를 수강하기 시작했다. 해당 강의는 네이버 부스트코스를 비롯해 코세라(Coursera), EDX 등에서 수강할 수 있다. 모두를 위한 파이썬 (PY4E) 부스트코스 무료 강의 www.boostcourse.org PY4E - Python for Everybody Python for Everybody This web site is building a set of free materials, lectures, book and assignments to help students learn how to program in Python. You can ..