Skip to content
Snippets Groups Projects
Commit 852c1cba authored by KimMinSeob's avatar KimMinSeob
Browse files

Upload New File

parent cb0b2f88
No related branches found
No related tags found
No related merge requests found
python 은 인터프리터이다.
not 컴파일러.
'
파이썬 language 입력 >> 기계어 출력 (machine language)
변수는 저장장치(메모리) 어딘가에 생기는것.
** 는 제곱
변수에 문자 저장할때 '' 사용
예) t='hello'
2**100 과 2.0**100.0 은 답이 다르다. (기계어적 접근)
2.0**100.0 은 근사값 나타낸다. (실수 나타냄)
//는 나눈 몫 나타냄
7//2 는 3
8//4 는 2
%는 나눈 나머지 나타냄
# 은 주석 (comment)
16진수 를 10진수로 바꾸는 문제.
2진수 >> 16진수할때 네개씩 끊어서.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment