jackfrued / jackfrued/Python-100-Days

05构造程序逻辑正整数反转

Open
#923 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Jupyter Notebook
Stars
187k
Forks
55.8k
PR merge metrics
No merged PRs in 30d

Description

正整数反转
while num > 0:
reversed_num = reversed_num * 10 + num % 10
num //= 10
请问怎么理解给reversed_num等式右边的赋值?我的牛角尖是:12345,不是3位数吖。
望告之。谢谢您。

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the positive-integer reversal loop shown in the issue and trace it using 12345 as the example input. Explain the right-hand side of the reversed_num assignment and how repeated iterations build the result; done means the question is answered clearly without requiring a repository file or test.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
documentation
Issue type
Documentation
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.