Problem
Creat Python program that prints all derangements of 0, 1, 2, 3, 4. Derangements are permutations in which no element is in its original position. For example, 1, 2, 3, 4, 0 is a derangement of 0, 1, 2, 3, 4, while 0, 2, 1, 4, 3 is not. Show your program and the output of the program.