4. Write a complete Python program which reads an integer N…
4. Write a complete Python program which reads an integer N from the user, then computes and prints the following sum: 1**1 + 2**2 + 3**3 + … + N**N Note that each term in the above is v**v, for each int v from 1 through N. Also … denotes all the missing terms from 4 through N-1.