Computer Science, asked by kuldeepswarnkar14, 1 day ago

Write a python program to demonstrate the concept of variable length argument to calculate product and power of the first 10 numbers

Answers

Answered by tanupatel257
2

Answer:

import math

a = 5

print (pow(a,a))

Similar questions