Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- overfitting
- Classificaion
- elif
- neural net
- Attention
- sentence embedding
- word2vec
- Python
- python practice
- deep learning
- abstraction
- NLP
- Set Transformer
- Transformer
- Self-loop attention
- sigmoid
- pytorch
- machine learning
- GNN
- XOR
Archives
- Today
- Total
목록integer (1)
Research Notes

Python의 자료형은 여러 종류로 이뤄져있다. ▶ 숫자형 - 정수(Integer) , ex) -1, 0, 2 ... - 소수(Floating Point), ex) 2.0 , -3.5 ... ▶ 문자형 - ex) "hello" , "world" , "2" - ex) "2" + "5" = "25" ▶ 불린 - True와 False만 값으로 가진다. ▶ 리스트, 사전, 튜플 등... 이 있다. 1. 숫자형 연산 부호 (Operators) 연산자 뜻 + 덧셈 (addition) - 뺄셈 (subtraction) * 곱셈 (multiplication) / 나눗셈 (division) % 나머지 (modulo) ** 거듭제곱 (exponentiation) print(2 - 4) # 2 빼기 4 print(5 * 3..
Programming Language/Python
2023. 7. 3. 15:46