Computer Science, asked by tiwarikrishna0984, 3 months ago

write a program to add two input functions​

Answers

Answered by bhavyapanda20
1

Explanation:

Programiz

Search Programiz

Python Program to Add Two Numbers

In this program, you will learn to add two numbers and display it using print() function.

To understand this example, you should have the knowledge of the following Python programming topics:

Python Input, Output and Import

Python Data Types

Python Operators

In the program below, we've used the + operator to add two numbers.

Example 1: Add Two Numbers

# 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))

Output

The sum of 1.5 and 6.3 is 7.8

The program below calculates the sum of two numbers entered by the user..

Similar questions