Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Donate
Please sign in before you donate.
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
1 Star 0 Fork 324

Andy/Python

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (93)
master
pre-commit-ci-update-config
uv-again
Sphinx-runs-on-ubuntu-24.04-arm
dependabot/github_actions/astral-sh/setup-uv-5
Shebang-python-for-Windows
gh-pages
Test-on-Python-3.13-beta
cclauss-patch-2
Keep-GitHub-Actions-up-to-date-with-Dependabot
Fewer-forward-propogations-to-speed-tests
cclauss-patch-1
Add-dataclasses-to-binary_search_tree.py
Simplify-is_bst.py
test-cov-gh-action
dhruv/remove
Remove-backslashes-from-is_palindrome.py
fuzzy_operations.py-on-Python-3.12
Python-3.12-on-Debian-bookworm
fix-maclaurin_series-on-Python3.12
master
Branches (93)
master
pre-commit-ci-update-config
uv-again
Sphinx-runs-on-ubuntu-24.04-arm
dependabot/github_actions/astral-sh/setup-uv-5
Shebang-python-for-Windows
gh-pages
Test-on-Python-3.13-beta
cclauss-patch-2
Keep-GitHub-Actions-up-to-date-with-Dependabot
Fewer-forward-propogations-to-speed-tests
cclauss-patch-1
Add-dataclasses-to-binary_search_tree.py
Simplify-is_bst.py
test-cov-gh-action
dhruv/remove
Remove-backslashes-from-is_palindrome.py
fuzzy_operations.py-on-Python-3.12
Python-3.12-on-Debian-bookworm
fix-maclaurin_series-on-Python3.12
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (93)
master
pre-commit-ci-update-config
uv-again
Sphinx-runs-on-ubuntu-24.04-arm
dependabot/github_actions/astral-sh/setup-uv-5
Shebang-python-for-Windows
gh-pages
Test-on-Python-3.13-beta
cclauss-patch-2
Keep-GitHub-Actions-up-to-date-with-Dependabot
Fewer-forward-propogations-to-speed-tests
cclauss-patch-1
Add-dataclasses-to-binary_search_tree.py
Simplify-is_bst.py
test-cov-gh-action
dhruv/remove
Remove-backslashes-from-is_palindrome.py
fuzzy_operations.py-on-Python-3.12
Python-3.12-on-Debian-bookworm
fix-maclaurin_series-on-Python3.12
Python
/
strings
/
barcode_validator.py
Python
/
strings
/
barcode_validator.py
barcode_validator.py 2.13 KB
Copy Edit Raw Blame History
Christian Clauss authored 2023年05月26日 15:34 +08:00 . Add more ruff rules (#8767)
"""
https://en.wikipedia.org/wiki/Check_digit#Algorithms
"""
def get_check_digit(barcode: int) -> int:
"""
Returns the last digit of barcode by excluding the last digit first
and then computing to reach the actual last digit from the remaining
12 digits.
>>> get_check_digit(8718452538119)
9
>>> get_check_digit(87184523)
5
>>> get_check_digit(87193425381086)
9
>>> [get_check_digit(x) for x in range(0, 100, 10)]
[0, 7, 4, 1, 8, 5, 2, 9, 6, 3]
"""
barcode //= 10 # exclude the last digit
checker = False
s = 0
# extract and check each digit
while barcode != 0:
mult = 1 if checker else 3
s += mult * (barcode % 10)
barcode //= 10
checker = not checker
return (10 - (s % 10)) % 10
def is_valid(barcode: int) -> bool:
"""
Checks for length of barcode and last-digit
Returns boolean value of validity of barcode
>>> is_valid(8718452538119)
True
>>> is_valid(87184525)
False
>>> is_valid(87193425381089)
False
>>> is_valid(0)
False
>>> is_valid(dwefgiweuf)
Traceback (most recent call last):
...
NameError: name 'dwefgiweuf' is not defined
"""
return len(str(barcode)) == 13 and get_check_digit(barcode) == barcode % 10
def get_barcode(barcode: str) -> int:
"""
Returns the barcode as an integer
>>> get_barcode("8718452538119")
8718452538119
>>> get_barcode("dwefgiweuf")
Traceback (most recent call last):
...
ValueError: Barcode 'dwefgiweuf' has alphabetic characters.
"""
if str(barcode).isalpha():
msg = f"Barcode '{barcode}' has alphabetic characters."
raise ValueError(msg)
elif int(barcode) < 0:
raise ValueError("The entered barcode has a negative value. Try again.")
else:
return int(barcode)
if __name__ == "__main__":
import doctest
doctest.testmod()
"""
Enter a barcode.
"""
barcode = get_barcode(input("Barcode: ").strip())
if is_valid(barcode):
print(f"'{barcode}' is a valid barcode.")
else:
print(f"'{barcode}' is NOT a valid barcode.")
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

Python 算法集
Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/man119/Python.git
git@gitee.com:man119/Python.git
man119
Python
Python
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /