Top 5 py tricks..
1.FACTORIAL OF A NUMBER
To find the factorial of any number don't need of four to five lines of code in python as of c,c++,java.Just import math module then follow the code as
import math
print(math.factorial(5))...
prasannarv.hashnode.dev1 min read