How many mutually different three-digit numbers can be composed of four --Python

How many mutually different three-digit numbers can be composed of four?

num = 0
for i in range(1, 5):
    for j in range(1, 5):
        for k in range(1, 5):
            if i != j and i != k and j != k:
                num += 1
print(num)

It can be composed of 24 three-digit different from each other.

Guess you like

Origin www.cnblogs.com/qikeyishu/p/11001662.html