“adicionando em python” Respostas de código

soma de 2 números em python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Easy Earthworm

Programa Pythn para adicionar Unputs do usuário

# Store input numbers
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')

# Add two numbers
sum = float(num1) + float(num2)

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

Como adicionar Python

a = int(input())
b = int(input())
s = a+b
print(S)
Prickly Penguin

adicionando em python

#to add 2 digits
print("enter 2 numbers")
a =int(input("enter 1 st number"))
b =int(input("enter 2nd number"))
c = a+b
print ("here is your answer",c)
Jolly Jay

Respostas semelhantes a “adicionando em python”

Perguntas semelhantes a “adicionando em python”

Mais respostas relacionadas para “adicionando em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código