“Cómo agregar en Python” Código de respuesta

Suma de 2 números en Python

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

Agregar en Python

prime_numbers = {2, 3, 5, 7}

# add 11 to prime_numbers
prime_numbers.add(11)


print(prime_numbers)

#if the element is already in the set, it won't add it

# Output: {2, 3, 5, 7, 11}
Crazy Coyote

Cómo agregar en Python

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

Agregar en Python


age += 1

Lovely Lion

agregando 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

Respuestas similares a “Cómo agregar en Python”

Preguntas similares a “Cómo agregar en Python”

Más respuestas relacionadas con “Cómo agregar en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código