/ 와 // 차이
연산자 / : float
연산자 // : int
print(type(6/3)) # <class 'float'>
print(type(6//3)) # <class 'int'>
https://twpower.github.io/112-difference-between-single-slash-and-double-slash-in-python
반응형
'개발 > python' 카테고리의 다른 글
python. isalnum과 isalpha (0) | 2023.10.28 |
---|---|
python. set 과 dict 차이 (2) | 2023.10.05 |
python. immutable과 mutable (0) | 2023.08.29 |
python. 얕은복사와 깉은복사 (feat. 백준 15683) (0) | 2023.08.24 |
python. 띄어쓰기(개행문자) 없이 print 찍고 싶을때 (간단한 별찍기) (0) | 2022.12.11 |