“Programme Python pour ajouter deux nombres en utilisant la fonction” Réponses codées

Programme Python pour ajouter deux nombres en utilisant la fonction

num1 = int(input('Enter the first number: '))
num2 = int(input('Enter the second number: '))
def sum_input(num1,num2):
  sum = num1 + num2
  return sum
Siddhant Singh

Programme Python pour ajouter deux nombres

#create two variable to store the user input number
num1 = int(input('Enter the first number: '))
num2 = int(input('Enter the second number: '))
#create a third variable to store the sum of two no.s
sum = num1 + num2
print('The sum of two entered numbers is:', sum)
Enchanting Eel

Comment ajouter deux nombres dans Python

num1 = int(input('any number'))
num2 = int(input('any number'))
print(sum(num1,num2))
Homeless Hamster

Python d'ajouter deux nombres

a = int(input("Enter Teh value of a: "))
b = int(input("Enter The value of b: "))

sum = a+b
print(sum)
Smoggy Swan

Ajouter deux nombres dans Python

# This program adds two numbers

num1 = 1.5
num2 = 6.3

# Add two numbers
sum = num1 + num2

# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
Tender Tapir

Réponses similaires à “Programme Python pour ajouter deux nombres en utilisant la fonction”

Questions similaires à “Programme Python pour ajouter deux nombres en utilisant la fonction”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code