Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 python 创建条形码。我尝试使用 pyBarcode 库。当我尝试从值 12345 创建条形码时。我得到的结果类似于 123452 或 123454。但是我需要的格式是 13 位,比如 0000001234567 或 1123456000008。
我是这样尝试的:
import barcode ean = barcode.get_barcode_class("ean13") ean_final = ean(u"12345")