“Hinzufügen von Python” Code-Antworten

Summe von 2 Zahlen in Python

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

Pythn -Programm zum Hinzufügen von Benutzerneinsätzen

# 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

So fügen Sie in Python hinzu

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

Hinzufügen von 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

Ähnliche Antworten wie “Hinzufügen von Python”

Fragen ähnlich wie “Hinzufügen von Python”

Weitere verwandte Antworten zu “Hinzufügen von Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen