我確定這將是一個非常基本的問題,但我正在爲我的計算類製作一個ISBN校驗碼計算器。我當前的代碼是這樣的: isbn = []
results = []
print("Please input your ISBN 1 number at a time")
def isbn_input():
isbn.append(int(input("ISBN character 1: ")))
我剛剛修好了我ISBN校驗碼的代碼要多一點效率,但現在它回來與屬性錯誤: AttributeError: 'int' object has no attribute 'append'
下面的代碼: isbn = 0
result = 0
results = 0
print("Please input your ISBN 1 number at a time")
isbn = [int(
我的代碼應該要求輸入一個7位數字(GTIN 8)並告訴您第8位數字和/或要求您輸入8位數字(GTIN 8)號碼和告訴它是否是有效的GTIN 8號碼。雖然我沒有得到這些輸出。當我在一個8位數字 if len(str(GTIN))==8 and sum(total)%10==0: TypeError: 'int' object is not iterable What do I need to do
我有下面的代碼驗證如果某些數字是有效利用LUHN算法模塊10 function isCheckdigitCorrect(value) {
// accept only digits, dashes or spaces
if (/[^0-9-\s]+/.test(value)) return false;
var nCheck = 0, nDigit = 0, bEven =