Answers for "find the sum in two values in a list python"

8

find sum of 2 numbers in array using python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Posted by: Guest on March-06-2020

Code answers related to "find the sum in two values in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language