수치형 자료형
군집/컬렉션 자료형
항목 | 예 |
---|---|
정수 | 10, 123, -30, 0 |
실수 | 10.123, 30.123, 2.3e10 |
8진수 | 0o34 |
16진수 | 0x2A, 0xFF |
a는 8진수
b,c는 16진수
8진수를 만들기 위해서는 숫자가 0o 또는 0O (숫자 0 + 알파벳 o, O )
16진수를 만들기 위해서는 0x 또는 0X ( 숫자 0 + 알파벳 x, X )
10진수 | 2진수 | 8진수 | 16진수 |
---|---|---|---|
0 | 0000 | 0 | 0 |
1 | 0001 | 1 | 1 |
2 | 0010 | 2 | 2 |
3 | 0011 | 3 | 3 |
4 | 0100 | 4 | 4 |
5 | 0101 | 5 | 5 |
6 | 0110 | 6 | 6 |
7 | 0111 | 7 | 7 |
8 | 1000 | 10 | 8 |
9 | 1001 | 11 | 9 |
10 | 1010 | 12 | A |
11 | 1011 | 13 | B |
12 | 1100 | 14 | C |
13 | 1101 | 15 | D |
14 | 1110 | 16 | E |
15 | 1111 | 17 | F |
16 | 10000 | 20 | 10 |
진법 변환 참고 사이트 : https://m.blog.naver.com/icbanq/221727893563
"Life is too short, You need python."
"a"
"123"
1. 문자열에 작은 따옴표 포함시키기
>>> food = "Python's favorite food is perl."
2. 문자열에 큰 따옴표 포함시키기
>>> say = '"Python is very easy." he says.'
3. 백슬래시(\)를 사용해서 작은 따옴표와 큰 따옴표를 문자열에 포함시키기
>>> food = 'Python\'s favorite food is perl.'
>>> say = "\"Python is very easy.\" he says."
Life is too short
You need python
1. 줄을 바꾸기 위한 이스케이프 코드(\n) 삽입하기
>>> example = "Life is too short\nYou need python"
2. 연속된 작은 따옴표 3개 또는 큰 따옴표 3개 사용하기
>>> example='''
... Life is too short
... You need python
...'''
이스케이프 코드
>>> head = "Python"
>>> tail = "is fun"
>>> head + tail
'Python is fun'
>>> a = "python"
>>> a*2
'pythonpython'
>>> a = "Life is too short"
>>> len(a)
17