Computer Science, asked by devashish1688, 9 months ago

State syntax of all functions like sum, average,count,max,min,power,sort etc

Answers

Answered by boredpotatohead
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