29
IndentationError: unindent không khớp với bất kỳ mức thụt ngoài nào
Khi tôi biên dịch mã Python bên dưới, tôi nhận được IndentationError: unindent không khớp với bất kỳ mức thụt ngoài nào import sys def Factorial(n): # Return factorial result = 1 for i in range (1,n): result = result * i print "factorial is ",result return result Tại sao?
584
python
indentation