🏃
Python 100제
/
✌
Python 100제 - 2권
/
🔥
문제57
/
✔️
답안
✔️
답안
def count(n): countN = str(list(range(n+1))).count('1') return countN print(count(1000))