We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08c6113 + 10489bf commit bb1e06dCopy full SHA for bb1e06d
1 file changed
content/debugging-logging.md
@@ -25,8 +25,8 @@ Vejam o exemplo nesse programa, com falha:
25
logging.debug('Start of factorial(%s%%)' % (n))
26
total = 1
27
for i in range(n+1):
28
- total *= i
29
- logging.debug('i is ' + str(i) + ', total is ' + str(total))
+ total *= i
+ logging.debug('i is ' + str(i) + ', total is ' + str(total))
30
logging.debug('End of factorial(%s%%)' % (n))
31
return total
32
0 commit comments