python3에서 나누기 주의사항

2019. 8. 4. 22:45PL/Python

python2에서 python3로 넘어오면서 나누기가 단순 /가 아닌 //로 연산을 해야한다

 

num = 10
result = ""
while (num > 0):
    remainder = num % 2
    num = num // 2
    result = str(remainder) + result
print(result)

'PL > Python' 카테고리의 다른 글

python 실행파일로 실행하기  (0) 2019.08.06
랜덤 숫자 맞추기 python  (0) 2019.08.04
python 256과 257  (0) 2019.08.04
리스트 연산  (0) 2019.08.03
python padding >, <  (0) 2019.08.02