Answers for "which numbers sum will be 5 in python"

3

sum of any numbers in python

sum(list(map(int,input().split())))
Posted by: Guest on December-02-2020
0

how to sum 2 no.s in python

num1 = int(input("enter a number : "))
num2 = int(input("enter another number : "))
sum = num1 + num2 
print(sum)
Posted by: Guest on November-24-2021

Code answers related to "which numbers sum will be 5 in python"

Python Answers by Framework

Browse Popular Code Answers by Language