
xxxxxxxxxx
#Padlock Code Challenge - www.101computing.net/padlock-code-challenge-2/
code = 0
#Update the code below to solve this challenge
for digit1 in range(0,10):
for digit2 in range(0,10):
for digit3 in range(0,10):
print(str(digit1)+str(digit2)+str(digit3))
print("Code:")
print(code)
task_alt