bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch
Learn/Python/Files, Modules, and the Standard Library
Python•Files, Modules, and the Standard Library

How to Add Two Numbers in Python

Learn how to add two numbers in Python.

Use the

+ operator to add two numbers:

Example x = 5 y = 10 print(x + y)

Add Two Numbers with User Input

In this example, the user must input two numbers. Then we print the sum by calculating (adding) the two numbers:

Example x = input("Type a number: ")

Formula

y = input("Type another number: ")

sum

Formula

= int(x) + int(y)
print("The sum is: ", sum)

Previous

Python Requests Module

Next

Python Delete File