State syntax of all functions like sum, average,count,max,min,power,sort etc
Answers
Answered by
1
IN PYTHON:
sum:
first_num = 2
second_num = 3
ans = first_num + second_num
print(ans)
replace operator + with needs of your program
Similar questions